forked from module-federation/module-federation-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 730 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 730 Bytes
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
{
"name": "@dashboard/app1",
"version": "0.0.0",
"private": true,
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/preset-react": "7.12.1",
"babel-loader": "8.1.0",
"html-webpack-plugin": "4.5.0",
"serve": "11.3.2",
"webpack": "5.2.0",
"webpack-cli": "4.0.0",
"webpack-dev-server": "3.11.0",
"@module-federation/dashboard-plugin": "1.1.0"
},
"scripts": {
"start": "node --inspect ../../node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"build": "node ../../node_modules/webpack/bin/webpack.js --mode production",
"serve": "serve dist -p 3001",
"clean": "rm -rf dist"
},
"dependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
}
}