forked from uikoo9/qiao-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.15 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
{
"name": "qiao-tools",
"private": true,
"scripts": {
"prepare": "husky install",
"clean": "lerna clean -y && lerna exec 'rm -rf package-lock.json'",
"init": "lerna bootstrap",
"build": "lerna run build",
"prettier": "prettier --write .",
"eslintfix": "eslint . --ext .js --fix",
"test": "lerna run test",
"lint": "npm run build && npm run prettier && npm run eslintfix && npm run test",
"postinstall": "npm run clean && npm run init && npm run lint",
"pb": "lerna publish",
"graph": "nx graph",
"check": "ncu && lerna exec ncu --concurrency=1 --ignore=qiao-cli",
"update": "ncu -u && lerna exec 'ncu -u' --concurrency=1 --ignore=qiao-cli",
"pkg": "qlerna pkg ./packages",
"dpkg": "qlerna pkg ./packages dev"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"ava": "^5.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lerna": "^6.6.1",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"qiao-lerna": "^3.2.8",
"rollup": "^3.21.4"
}
}