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) · 684 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 684 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": "@comprehensive-demo/app-01",
"version": "0.0.0",
"private": true,
"dependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@material-ui/core": "^4.9.4",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^4.5.0",
"markdown-to-jsx": "^7.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router-dom": "^5.1.2",
"serve": "^11.3.0",
"webpack": "5.2.0",
"webpack-cli": "^4.0.0"
},
"scripts": {
"start": "webpack --watch",
"build": "webpack --mode production",
"serve": "serve dist -p 3001",
"clean": "rm -rf dist"
},
"devDependencies": {
"raw-loader": "4.0.2"
}
}