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) · 693 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 693 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": "host",
"version": "1.0.0",
"private": true,
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/preset-react": "^7.8.3",
"@emotion/react": "^11.9.0",
"babel-loader": "^8.0.6",
"concurrently": "^7.1.0",
"html-webpack-plugin": "^5.3.1",
"serve": "^13.0.0",
"webpack": "5.72.1",
"webpack-cli": "^4.9.2"
},
"scripts": {
"dev": "concurrently \"npm run start\" \"npm run serve\"",
"start": "webpack --watch",
"build": "webpack --mode production",
"serve": "serve dist -p 8080",
"clean": "rm -rf dist"
}
}