-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.14 KB
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
29
30
31
32
33
34
35
36
{
"name": "vanduo-docs",
"version": "1.3.7",
"private": true,
"description": "Vanduo documentation and website",
"scripts": {
"sync:framework": "node scripts/sync-framework-assets.js",
"preview:local": "pnpm run sync:framework && npx --yes serve -l 8787",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:a11y": "playwright test --grep @a11y",
"test:e2e": "playwright test --grep @e2e",
"test:perf": "playwright test --grep @perf",
"test:mobile": "playwright test --project='*Mobile*'",
"test:desktop": "playwright test --project='*Desktop*'",
"test:chromium": "playwright test --project='Chromium*'",
"test:firefox": "playwright test --project='Firefox*'",
"test:webkit": "playwright test --project='WebKit*'",
"report": "playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.58.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"pnpm": {
"allowedBuilds": {
"@playwright/test": true
}
},
"packageManager": "pnpm@10.28.2"
}