-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.07 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": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "",
"prettier": "",
"deploy": "cross-env SITE_DEPLOY='TRUE' npm run build && gh-pages -d ./dist",
"sync:tnpm": "node -e 'require(\"./scripts/syncTNPM\")()'"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gh-pages": "^5.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.0",
"pretty-quick": "^4.0.0"
},
"gitHooks": {
"pre-commit": "echo \"pre-commit: run...\" && exit 1"
},
"eslintConfig": {
"extends": ["eslint:recommended", "plugin:prettier/recommended"]
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint --fix",
"git add"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}