-
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.25 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.25 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": "glizzy",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"test": "bunx playwright test --project=chromium",
"test:ui": "bunx playwright test --ui",
"test:headed": "bunx playwright test --headed",
"test:debug": "bunx playwright test --debug",
"test:report": "bunx playwright show-report",
"test:all": "bunx playwright test",
"test:aria": "bunx playwright test --project=chromium --grep 'ARIA-AT'",
"test:keyboard": "bunx playwright test --project=chromium --grep 'Keyboard'",
"test:aria-report": "bun run e2e/generate-aria-report.ts",
"test:accessibility": "bunx playwright test --project=chromium accessibility.spec.ts",
"lint": "bunx oxlint --type-aware",
"lint:fix": "bunx oxlint --type-aware --fix",
"lint:fast": "bunx oxlint",
"format": "bunx oxfmt --write",
"format:check": "bunx oxfmt --check",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@guidepup/playwright": "^0.15.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/cli": "^4.2.1",
"@types/node": "^25.3.0",
"axe-core": "^4.11.1",
"lost-pixel": "^3.22.0",
"oxlint": "^1.50.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
}
}