-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 925 Bytes
/
package.json
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": "dynamic-remotes-node",
"description": "Dynamic Remotes on server side with Node Federation",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"app1": "cd app1 && webpack build --config webpack.config.js && node dist/main.js",
"app2": "cd app2 && webpack serve --config webpack.config.js",
"start": "concurrently 'pnpm run app2' 'sleep 5 && pnpm run app1'"
},
"dependencies": {
"@module-federation/enhanced": "0.0.0-next-20241105211652",
"@module-federation/node": "0.0.0-next-20241105211652",
"@module-federation/runtime": "0.0.0-next-20241105211652",
"@rspack/cli": "1.0.14",
"@rspack/core": "1.0.14",
"@rspack/dev-server": "1.0.9",
"concurrently": "^8.0.1",
"rimraf": "^5.0.5",
"webpack": "5.95.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"kill-port": "2.0.1"
}
}