-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
33 lines (33 loc) · 1.12 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
{
"name": "federation-demo1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve:shell": "npx webpack serve --config webpack.shell.config.js",
"serve:mfe1": "npx webpack serve --config webpack.mfe1.config.js",
"serve:dist": "concurrently \"npm run serve:shell\" \"npm run serve:mfe1\"",
"build": "webpack --config webpack.shell.config.js && webpack --config webpack.mfe1.config.js",
"start": "concurrently \"webpack-dev-server --config webpack.mfe1.config.js\" \"webpack-dev-server --config webpack.shell.config.js\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"html-webpack-plugin": "git://github.com/ScriptedAlchemy/html-webpack-plugin.git#master",
"mini-css-extract-plugin": "^1.3.1",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"serve": "^11.3.2",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.11",
"typescript": "^4.0.5",
"webpack": "^5.5.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"rxjs": "^7.0.0-beta.0"
}
}