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
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 KB
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
32
33
{
"name": "module-federation-ssr",
"version": "1.0.0",
"scripts": {
"start": "concurrently \"npm run buildHost\" \"npm run startHost\" \"npm run buildRemote\" \"npm run startRemote\"",
"buildHost": "webpack --config=hostServer/webpack.config.js -w",
"startHost": "nodemon hostServer/public/server/server.js",
"buildRemote": "webpack --config=remoteServer/webpack.config.js -w",
"startRemote": "nodemon remoteServer/public/server/server.js"
},
"license": "MIT",
"author": {
"name": "Pini Tayeb"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.1",
"babel-loader": "8.1.0",
"concurrently": "5.3.0",
"nodemon": "2.0.6",
"lerna": "3.22.1",
"webpack": "5.2.0",
"webpack-cli": "4.0.0",
"@module-federation/dashboard-plugin": "./module-federation-dashboard-plugin-v2.0.0-beta.7.tgz"
},
"dependencies": {
"express": "^4.17.1",
"react": "^16.13.0",
"react-dom": "^16.13.0"
}
}