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
28 lines (28 loc) · 674 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 674 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
27
28
{
"name": "@shared-routing/core",
"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"
},
"scripts": {
"start": "webpack-cli serve",
"build": "webpack --mode production",
"serve": "serve dist -p 3002",
"clean": "rm -rf dist"
},
"dependencies": {
"@material-ui/core": "^4.9.10",
"history": "^5.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router": "^5.1.2"
}
}