-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 741 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 741 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": "basic-host-remote",
"workspaces": [
"./app1",
"./app2"
],
"description": "Basic Host and Remote Example",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "pnpm --filter basic-host-remote_* run start",
"build": "pnpm --filter basic-host-remote_* run build",
"serve": "pnpm --filter basic-host-remote_* run serve",
"clean": "pnpm --filter basic-host-remote_* run reset",
"test:e2e": "npx playwright test",
"e2e:ci": "pnpm build && pnpm exec playwright test --reporter=list",
"legacy:e2e:ci": "echo \"No legacy e2e tests\""
},
"devDependencies": {
"concurrently": "8.2.2",
"wait-on": "7.2.0",
"@playwright/test": "1.58.2",
"playwright": "1.58.2"
}
}