-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1001 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
29
30
31
{
"name": "qiankun-demo",
"version": "1.0.0",
"description": "qiankun微框架demo",
"main": "index.js",
"author": "zhangyuanliang",
"license": "MIT",
"scripts": {
"install": "npm-run-all --serial install:*",
"install:main": "cd main && yarn",
"install:sub-vue": "cd sub-vue && yarn",
"install:sub-purehtml": "cd sub-purehtml && yarn",
"install:sub-react": "cd sub-react && yarn",
"start": "npm-run-all --parallel start:*",
"start:sub-vue": "cd sub-vue && yarn start",
"start:sub-purehtml": "cd sub-purehtml && yarn start",
"start:sub-react": "cd sub-react && yarn start",
"start:main": "cd main && yarn start",
"build": "npm-run-all --parallel build:*",
"build:main": "cd main && yarn build",
"build:sub-vue": "cd sub-vue && yarn build",
"build:sub-react": "cd sub-react && yarn build"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"dependencies": {
"create-react-app": "^4.0.3",
"global": "^4.4.0"
}
}