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
27 lines (27 loc) · 678 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 678 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
{
"name": "@different-react-versions/app1",
"version": "0.0.0",
"private": true,
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-react": "7.12.1",
"babel-loader": "8.1.0",
"bundle-loader": "0.5.6",
"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 3001",
"clean": "rm -rf dist"
},
"dependencies": {
"react": "16.14.0",
"react-dom": "16.14.0"
}
}