forked from jaredpalmer/backpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 809 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 809 Bytes
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
{
"private": true,
"devDependencies": {
"lerna": "^2.9.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"
},
"dependencies": {
"@babel/core": "7.0.0-beta.39",
"@babel/preset-stage-0": "^7.0.0-beta.37",
"express": "^4.16.2"
},
"workspaces": [
"packages/*",
"examples/*"
]
}