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
31 lines (31 loc) · 726 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 726 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
29
30
31
{
"name": "component-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack": "webpack --watch",
"serve": "serve dist -p 3001",
"start": "concurrently \"npm run webpack\" \"npm run serve\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/preset-react": "7.16.7",
"babel-loader": "8.2.3",
"concurrently": "7.0.0",
"css-loader": "6.7.1",
"html-webpack-plugin": "5.5.0",
"serve": "13.0.2",
"style-loader": "3.3.1",
"url-loader": "4.1.1",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}