-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "@adminjs/feature-template",
"version": "1.0.0",
"main": "lib/index.js",
"types": "types/index.d.ts",
"private": false,
"repository": "[email protected]:SoftwareBrothers/adminjs-feature-template.git",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"release": "semantic-release",
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint './src/**/*'",
"check:all": "yarn lint && yarn build && yarn test"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"adminjs": "^5.6.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"adminjs": "^5.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"semantic-release": "^17.2.2",
"semantic-release-slack-bot": "^1.6.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@adminjs/mongoose": "^2.0.0",
"@types/mongoose": "^5.7.37",
"mongoose": "^5.10.11"
}
}