-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.44 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
{
"name": "@adminjs/custom-components",
"version": "2.0.1",
"main": "lib/index.js",
"types": "types/index.d.ts",
"private": false,
"repository": "[email protected]:SoftwareBrothers/admin-bro-custom-components.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/design-system": "^3.1.0",
"adminjs": "^6.7.0"
},
"devDependencies": {
"@adminjs/design-system": "^3.1.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@typescript-eslint/typescript-estree": "^5.44.0",
"adminjs": "^6.7.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"semantic-release": "^19.0.5",
"semantic-release-slack-bot": "^3.5.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}