forked from ddecrulle/workshop-module-federation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 690 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 690 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
{
"name": "root",
"private": true,
"version": "0.0.0",
"workspaces": [
"host",
"remote"
],
"devDependencies": {
"lerna": "^6.5.1",
"kill-port": "^2.0.1"
},
"scripts": {
"build": "lerna run build",
"build:host": "lerna run build --scope 'host'",
"build:remote": "lerna run build --scope 'remote'",
"serve": "lerna run --parallel preview",
"serve:host": "lerna run preview --scope 'host' ",
"serve:remote": "lerna run preview --scope 'remote'",
"dev": "lerna run --parallel dev",
"dev:host": "lerna run dev --scope 'host'",
"dev:remote": "lerna run dev --scope 'remote'",
"stop": "kill-port --port 5000,5001,5002"
}
}