-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.32 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
{
"name": "micro-frontends-single-spa-module-federation-example",
"version": "0.0.0",
"description": "Building Micro Frontends with single-spa and webpack's Module Federation",
"author": "kotarella1110",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kotarella1110-sandbox/micro-frontends-single-spa-module-federation-example.git"
},
"bugs": {
"url": "https://github.com/kotarella1110-sandbox/micro-frontends-single-spa-module-federation-example/issues"
},
"homepage": "https://github.com/kotarella1110-sandbox/micro-frontends-single-spa-module-federation-example#readme",
"scripts": {
"postinstall": "run-p install:*",
"install:shell": "npm install --prefix shell",
"install:react-app": "npm install --prefix react-app",
"dev": "run-p dev:*",
"dev:shell": "npm run dev --prefix shell",
"dev:react-app": "npm run dev --prefix react-app",
"build": "run-p build:*",
"build:shell": "npm run build --prefix shell",
"build:react-app": "npm run build --prefix react-app",
"start": "run-p start:*",
"start:shell": "npm start --prefix shell",
"start:react-app": "npm start --prefix react-app",
"format": "npx prettier --ignore-path .gitignore --write ."
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1"
}
}