-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 935 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 935 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
{
"name": "dynamic-remotes",
"workspaces": [
"./app1",
"./app2",
"./app3"
],
"private": true,
"description": "Basic demo of a host app loading remote components and dynamically sharing vendor code with unknown remotes, or without a Federation Plugin",
"version": "0.0.0",
"scripts": {
"start": "pnpm --filter dynamic-remotes_app* --parallel start",
"legacy:start": "pnpm --filter dynamic-remotes_app* --parallel legacy:start",
"build": "pnpm --filter dynamic-remotes_app* --parallel build",
"serve": "pnpm --filter dynamic-remotes_app* --parallel serve",
"clean": "pnpm --filter dynamic-remotes_app* --parallel clean",
"test:e2e": "npx playwright test",
"e2e:ci": "npx playwright test --reporter=list",
"legacy:e2e:ci": "npx playwright test --reporter=list"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"playwright": "1.58.2",
"wait-on": "7.2.0"
}
}