-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
85 lines (85 loc) · 2.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@adminjs/express",
"version": "6.1.0",
"description": "This is an official AdminJS plugin which integrates it with Express.js framework",
"main": "lib/index.js",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"dev": "rm -rf lib && tsc --watch",
"build": "rm -rf lib && tsc",
"example:simple": "nodemon",
"example:auth": "nodemon --config nodemon.auth.json",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.json --runInBand --detectOpenHandles",
"lint": "eslint './**/*.ts'",
"check:all": "yarn lint && yarn build && yarn test",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/adminjs-expressjs.git"
},
"keywords": [
"expressjs",
"admin",
"adminjs",
"admin-panel"
],
"author": "Michał Laskowski",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/SoftwareBrothers/adminjs-expressjs/issues"
},
"homepage": "https://github.com/SoftwareBrothers/adminjs-expressjs#readme",
"peerDependencies": {
"adminjs": "^7.4.0",
"express": ">=4.18.2",
"express-formidable": "^1.2.0",
"express-session": ">=1.17.3",
"tslib": "^2.5.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@adminjs/mongoose": "^4.0.0",
"@commitlint/config-conventional": "^17.4.4",
"@jest/globals": "^29.5.0",
"@semantic-release/git": "^9.0.0",
"@types/express": "^4.17.17",
"@types/express-formidable": "^1.2.0",
"@types/express-session": "^1.17.6",
"@types/jest": "^26.0.15",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"adminjs": "^7.4.0",
"commitlint": "^17.4.4",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"express-formidable": "^1.2.0",
"express-session": "^1.17.3",
"husky": "^4.3.0",
"jest": "^29.5.0",
"mongoose": "^6.10.0",
"nodemon": "^2.0.6",
"prettier": "^2.8.4",
"semantic-release": "^17.2.4",
"semantic-release-slack-bot": "^1.6.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {}
}