-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
44 lines (44 loc) · 2.36 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
39
40
41
42
43
44
{
"name": "egg-react-webpack-boilerplate",
"version": "5.1.0",
"description": "Egg React Webpack SSR/CRS 工程实现",
"dependencies": {
"runscript": "^1.5.0"
},
"devDependencies": {
"lerna": "^3.22.1",
"conventional-changelog-cli": "^1.3.5"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:all": "lerna run changelog",
"deps": "yarn --registry=https://registry.npm.taobao.org",
"ii": "lerna run ii --scope egg-react-webpack-spa-boilerplate",
"boot": "lerna bootstrap",
"clean": "lerna clean",
"changed": "lerna changed",
"add": "lerna add --scope egg-react-webpack-boilerplate",
"add:all": "lerna add",
"add:spa": "lerna add --scope egg-react-webpack-spa-boilerplate",
"add:mpa": "lerna add --scope egg-react-webpack-mpa-boilerplate",
"add:html": "lerna add --scope egg-react-webpack-html-boilerplate",
"add:asset": "lerna add --scope egg-react-webpack-asset-boilerplate",
"dev": "lerna run dev --stream --scope egg-react-webpack-boilerplate",
"dev:spa": "lerna run dev --stream --scope egg-react-webpack-spa-boilerplate",
"dev:mpa": "lerna run dev --stream --scope egg-react-webpack-mpa-boilerplate",
"dev:html": "lerna run dev --stream --scope egg-react-webpack-html-boilerplate",
"dev:asset": "lerna run dev --stream --scope egg-react-webpack-asset-boilerplate",
"test": "lerna run test --stream --scope egg-react-webpack-boilerplate",
"test:all": "npm run test:spa && npm run test:mpa && npm run test:html && npm run test:asset",
"test:spa": "lerna run test --stream --scope egg-react-webpack-spa-boilerplate",
"test:mpa": "lerna run test --stream --scope egg-react-webpack-mpa-boilerplate",
"test:html": "lerna run test --stream --scope egg-react-webpack-html-boilerplate",
"test:asset": "lerna run test --stream --scope egg-react-webpack-asset-boilerplate",
"create": "node scripts/create.js",
"create:all": "npm run create:spa && npm run create:mpa && npm run create:html && npm run create:asset",
"create:spa": "npm run create -- --scope egg-react-webpack-spa-boilerplate",
"create:mpa": "npm run create -- --scope egg-react-webpack-mpa-boilerplate",
"create:html": "npm run create -- --scope egg-react-webpack-html-boilerplate",
"create:asset": "npm run create -- --scope egg-react-webpack-asset-boilerplate"
}
}