-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·38 lines (38 loc) · 1.34 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
36
37
38
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.0.0-beta.42",
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-react": "^7.0.0-beta.42",
"babel-core": "^7.0.0-0",
"babel-loader": "^8.0.0-beta",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"gh-pages": "^1.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "3.2.0",
"lerna": "^2.10.2",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.3",
"webpack-manifest-plugin": "^2.0.0"
},
"scripts": {
"server": "node packages/orchestra/server.js",
"build:babel": "lerna exec --parallel -- babel src -d lib --config-file ../../.babelrc",
"build:prod": "lerna run build:prod",
"build": "yarn build:babel && yarn build:prod",
"release": "yarn build && lerna publish",
"watch": "yarn build:babel -- -w",
"predeploy": "yarn build",
"deploy": "gh-pages -d packages/home/dist",
"dev": "concurrently \"yarn watch\" \"lerna run dev --stream\""
}
}