-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.72 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
{
"name": "micro-frontends-qiankun-example",
"version": "0.0.0",
"description": "Building Micro Frontends with qiankun",
"author": "kotarella1110",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kotarella1110-sandbox/micro-frontends-qiankun-example.git"
},
"bugs": {
"url": "https://github.com/kotarella1110-sandbox/micro-frontends-qiankun-example/issues"
},
"homepage": "https://github.com/kotarella1110-sandbox/micro-frontends-qiankun-example#readme",
"scripts": {
"postinstall": "run-p install:*",
"install:shell": "npm install --prefix shell",
"install:home-app": "npm install --prefix home-app",
"install:react17-app": "npm install --prefix react17-app",
"install:react18-app": "npm install --prefix react18-app",
"dev": "run-p dev:*",
"dev:shell": "npm run dev --prefix shell",
"dev:home-app": "npm run dev --prefix home-app",
"dev:react17-app": "npm run dev --prefix react17-app",
"dev:react18-app": "npm run dev --prefix react18-app",
"build": "run-p build:*",
"build:shell": "npm run build --prefix shell",
"build:home-app": "npm run build --prefix home-app",
"build:react17-app": "npm run build --prefix react17-app",
"build:react18-app": "npm run build --prefix react18-app",
"start": "run-p start:*",
"start:shell": "npm start --prefix shell",
"start:home-app": "npm start --prefix home-app",
"start:react17-app": "npm start --prefix react17-app",
"start:react18-app": "npm start --prefix react18-app",
"format": "prettier --ignore-path .gitignore --write ."
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.0"
}
}