-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
30 lines (30 loc) · 1.14 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
{
"name": "micro-fe-single-spa",
"version": "1.0.0",
"description": "Micro frontend PoC using Single-spa, Angular, React",
"scripts": {
"install": "npm-run-all --serial install:*",
"install:backend": "cd backend && npm install",
"install:root-config": "cd root-config && npm install",
"install:root-config-html": "cd root-config-html && npm install",
"install:auth": "cd auth && npm install",
"install:navbar": "cd nav-bar && npm install",
"install:home": "cd home && npm install",
"install:product": "cd product && npm install",
"install:sales": "cd sales && npm install",
"start": "npm-run-all --parallel start:*",
"start:backend": "cd backend && npm start",
"start:root-config": "cd root-config && npm start",
"start:root-config-html": "cd root-config-html && npm start",
"start:auth": "cd auth && npm start",
"start:navbar": "cd nav-bar && npm start",
"start:home": "cd home && npm start",
"start:product": "cd product && npm start",
"start:sales": "cd sales && npm start"
},
"author": "Reza Rahmati",
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}