-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.05 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.05 KB
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
{
"name": "module-federation",
"version": "1.0.0",
"description": "Microfrontends using Webpack Module Pattern",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare-cart": "cd cart && npm i",
"prepare-catalog": "cd catalog && npm i",
"prepare-container": "cd container && npm i",
"prepare-all": "npm run prepare-cart && npm run prepare-catalog && npm run prepare-container",
"run-container": "cd container && npm start",
"run-catalog": "cd catalog && npm start",
"run-cart": "cd cart && npm start",
"start-all": "concurrently \"npm run run-container\" \"npm run run-catalog\" \"npm run run-cart\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfe-patterns/module-federation.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mfe-patterns/module-federation/issues"
},
"homepage": "https://github.com/mfe-patterns/module-federation#readme",
"dependencies": {
"concurrently": "^7.2.2"
}
}