-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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
37
38
{
"name": "playwright-ts-template",
"version": "1.0.0",
"description": "Base Playwright project with TypeScript and wico agent skills.",
"license": "MIT",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"report": "playwright show-report",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"typecheck": "tsc --noEmit",
"pw:setup": "npx playwright install --with-deps",
"postinstall": "npx playwright install"
},
"keywords": [
"typescript",
"playwright",
"e2e",
"testing",
"wico-playwright-agent-skills"
],
"devDependencies": {
"@eslint/js": "^9.18.0",
"@playwright/test": "^1.59.1",
"@types/node": "^22.12.0",
"eslint": "^9.18.0",
"eslint-plugin-playwright": "^2.2.0",
"prettier": "^3.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.20.0",
"wico-playwright-agent-skills": "^1.1.0"
}
}