-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 942 Bytes
/
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
{
"name": "root",
"private": true,
"useWorkspaces": true,
"version": "0.0.0",
"author": "haoziqaq <357229046@qq.com>",
"main": "index.js",
"npmClient": "yarn",
"workspaces": [
"packages/*"
],
"license": "MIT",
"scripts": {
"publish": "node scripts/bootstrap.js & lerna publish",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,js}": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.2.2",
"cz-lerna-changelog": "^2.0.3",
"execa": "^5.0.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.0",
"ora": "^5.4.0",
"prettier": "^2.1.2"
}
}