-
Notifications
You must be signed in to change notification settings - Fork 274
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "qiankun-example",
"version": "0.0.1",
"description": "qiankun demo",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"scripts": {
"install": "npm-run-all --serial install:*",
"install:main": "cd main && npm i",
"install:sub-vue": "cd sub-vue && npm i",
"install:sub-react": "cd sub-react && npm i",
"install:sub-html": "cd sub-html && npm i",
"start": "npm-run-all --parallel start:*",
"start:sub-react": "cd sub-react && npm start",
"start:sub-vue": "cd sub-vue && npm start",
"start:main": "cd main && npm start",
"start:sub-html": "cd sub-html && npm start",
"build": "npm-run-all build:* && bash ./scripts/bundle.sh",
"build:sub-react": "cd sub-react && npm run build",
"build:sub-vue": "cd sub-vue && npm run build",
"build:sub-html": "cd sub-html && npm run build",
"build:main": "cd main && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@fengxianqi.github.com:fengxianqi/qiankun-example.git"
},
"keywords": [
"qiankun",
"qiankun-example",
"demo"
],
"author": "fengxianqi",
"license": "MIT"
}