-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
24 lines (24 loc) · 1.36 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
{
"name": "mfs",
"version": "1.0.0",
"scripts": {
"start:polyrepo-hyperlinks": "run-p start:polyrepo-hyperlinks:**",
"start:polyrepo-hyperlinks:app-one": "cd polyrepo/1-hyperlink-integration/app-one && npm start",
"start:polyrepo-hyperlinks:app-two": "cd polyrepo/1-hyperlink-integration/app-two && npm start",
"start:polyrepo-iframes": "run-p start:polyrepo-iframes:**",
"start:polyrepo-iframes:shell": "cd polyrepo/4-iframes/shell && npm start",
"start:polyrepo-iframes:app-one": "cd polyrepo/4-iframes/mf-one && npm start",
"start:polyrepo-iframes:app-two": "cd polyrepo/4-iframes/mf-two && npm start",
"start:polyrepo-module-fedration": "run-p start:polyrepo-module-fedration:**",
"start:polyrepo-module-fedration:shell": "cd polyrepo/3-module-federation/shell && npm start",
"start:polyrepo-module-fedration:mf-one": "cd polyrepo/3-module-federation/mf-one && npm start",
"start:polyrepo-module-fedration:mf-two": "cd polyrepo/3-module-federation/mf-two && npm start",
"start:webcomp": "run-p start:webcomp:**",
"start:webcomp:shell": "cd polyrepo/2-web-components-router/shell && npm start",
"start:webcomp:app-one": "cd polyrepo/2-web-components-router/mf-one && npm start",
"start:webcomp:app-two": "cd polyrepo/2-web-components-router/mf-two && npm start"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}