-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 1.03 KB
/
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
{
"name": "module-federation-playground",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"start:remote": "cd rsbuild-example-remote && npm run build && npm run preview",
"start:host-rsbuild": "wait-on tcp:8081 && cd rsbuild-example-host && npm run build && npm run preview",
"start:host-nextjs": "wait-on tcp:8081 && cd nextjs-example-host && npm run build && npm run start",
"start:rsbuild": "npm-run-all -p start:remote start:host-rsbuild",
"start:next": "npm-run-all -p start:remote start:host-nextjs",
"dev:remote": "cd rsbuild-example-remote && npm run dev",
"dev:host-rsbuild": "wait-on tcp:8081 && cd rsbuild-example-host && npm run dev",
"dev:host-nextjs": "wait-on tcp:8081 && cd nextjs-example-host && npm run dev",
"dev:rsbuild": "npm-run-all -p dev:remote dev:host-rsbuild",
"dev:next": "npm-run-all -p dev:remote dev:host-nextjs"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"wait-on": "^7.2.0"
}
}