-
-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 677 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"private": true,
"devDependencies": {
"lerna": "^3.15.0"
},
"scripts": {
"bootstrap-workaround": "lerna exec yarn && lerna link && lerna run prepublish && lerna run prepare",
"postinstall": "yarn bootstrap-workaround",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"purge-lock-files": "rm -rf ./yarn.lock && rm -rf ./**/**/yarn.lock",
"purge-modules": "lerna clean --yes && rm -rf ./node_modules & rm -rf ./tools",
"purge": "yarn purge-modules && yarn purge-lock-files",
"reinstall": "yarn purge && yarn",
"build": "lerna run build --stream --parallel"
},
"workspaces": [
"packages/*",
"examples/*"
]
}