-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
30 lines (30 loc) · 1.06 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
{
"name": "root",
"private": true,
"scripts": {
"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",
"build": "lerna run build --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",
"install:pages": "lerna bootstrap --scope smoke-test-react --include-dependencies",
"build:pages": "rm -rf ./docs/smoke-test-react && lerna run build:smoke-test-react"
},
"devDependencies": {
"husky": "^4.3.8",
"lerna": "^3.22.1"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}