-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 940 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 940 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
27
28
{
"name": "playwright-ai-starter",
"version": "1.0.0",
"scripts": {
"test": "playwright test",
"test:quick": "playwright test --project=chromium --grep @smoke",
"test:all": "playwright test",
"test:chromium": "playwright test --project=chromium",
"test:firefox": "playwright test --project=firefox",
"test:webkit": "playwright test --project=webkit",
"test:headed": "playwright test --project=chromium --headed",
"test:ui": "playwright test --ui",
"debug": "PWDEBUG=1 playwright test --project=chromium",
"report": "playwright show-report",
"trace": "playwright show-trace test-results/**/*.zip",
"update-snapshots": "playwright test --update-snapshots"
},
"devDependencies": {
"@playwright/test": "^1.56.0",
"@types/node": "^24.7.0",
"dotenv": "^17.2.3",
"playwright": "^1.56.0",
"tsx": "^4.20.6"
},
"dependencies": {
"@playwright/mcp": "^0.0.44"
}
}