-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
35 lines (35 loc) · 1.27 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": "root",
"private": true,
"scripts": {
"clean:lock": "lerna exec 'rm -rf package-lock.json node_modules'",
"test:only": "npm t -- --scope",
"install:only": "lerna bootstrap --include-dependencies --scope",
"install:clean": "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",
"build:website": "lerna run build:website --stream"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@transmute/credentials-context": "^0.6.1-unstable.36",
"husky": "^4.2.5",
"lerna": "^3.22.0"
}
}