-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
33 lines (33 loc) · 1.2 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
{
"name": "root",
"private": true,
"scripts": {
"clean:lock": "npx lerna exec 'rm -rf package-lock.json node_modules'",
"preinstall:clean": "npx lerna exec npx jest -- --clearCache",
"install:clean": "npx lerna clean -y && rm -rf node_modules && npm i",
"install:ci": "npm install --ignore-scripts && lerna link && lerna bootstrap --since origin/main --include-dependencies",
"bootstrap": "lerna bootstrap",
"lint": "lerna run lint --stream",
"test": "lerna run test --stream",
"postinstall": "npm run bootstrap",
"publish:stable:major": "lerna publish major",
"publish:stable:minor": "lerna publish minor",
"publish:stable:patch": "lerna publish patch",
"publish:unstable": "lerna publish prerelease --preid unstable --yes",
"release": "lerna publish",
"release:canary": "lerna publish --canary",
"shove": "git add -A; git commit -m 'chore(ci): test ci'; git push origin main"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.2.5",
"lerna": "^3.22.0"
}
}