-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
28 lines (28 loc) · 1013 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
{
"name": "root",
"private": true,
"scripts": {
"setup:install": "npm install && lerna run setup:install",
"setup:clean-install": "npm ci && lerna run setup:clean-install",
"setup:update": "npx npm-check -u",
"setup:bootstrap": "lerna bootstrap --hoist --strict",
"setup:clean": "lerna clean --yes",
"setup:clean-all": "npm run setup:clean && rimraf ./node_modules",
"build": "lerna run build",
"build:clean": "lerna run build:clean",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"typecheck": "lerna run typecheck",
"test": "lerna run test",
"check": "npm run lint && npm run typecheck && npm run test",
"publish:cli": "lerna publish",
"publish-ci": "lerna publish --yes --no-git-reset",
"publish-ci:major": "npm run publish-ci -- major",
"publish-ci:minor": "npm run publish-ci -- minor",
"publish-ci:patch": "npm run publish-ci -- patch"
},
"devDependencies": {
"lerna": "^4.0.0",
"rimraf": "^3.0.2"
}
}