-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 907 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"scripts": {
"start:host": "cd mfe-host && npm start",
"start:mfe1-angular": "cd mfe1-angular && npm start",
"start:mfe2-angular13": "cd mfe2-angular13 && npm start",
"start:mfe3-react": "cd mfe3-react && npm start",
"start:mfe4-vue": "cd mfe4-vue && npm start",
"start:all": "npm-run-all --parallel start:host start:mfe1-angular start:mfe2-angular13 start:mfe3-react start:mfe4-vue",
"deps:host": "cd mfe-host && npm install --legacy-peer-deps",
"deps:mfe1-angular": "cd mfe1-angular && npm install",
"deps:mfe2-angular13": "cd mfe2-angular13 && npm install",
"deps:mfe3-react": "cd mfe3-react && npm install",
"deps:mfe4-vue": "cd mfe4-vue && npm install --legacy-peer-deps",
"deps:all": "npm-run-all --parallel deps:host deps:mfe1-angular deps:mfe2-angular13 deps:mfe3-react deps:mfe4-vue"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}