-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.78 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "accessibility-scan-demo-app",
"version": "0.1.0",
"private": true,
"bin": {
"a11y-scan": "dist/cli/bin/a11y-scan.js"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage",
"test:a11y": "npx playwright test"
},
"dependencies": {
"@axe-core/playwright": "^4.11.1",
"@azure/monitor-opentelemetry": "^1.16.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.57.0",
"@swc/helpers": "^0.5.20",
"accessibility-checker": "^4.0.13",
"commander": "^14.0.3",
"crawlee": "^3.16.0",
"next": "15.5.12",
"next-intl": "^4.8.3",
"playwright": "^1.58.2",
"pngjs": "^7.0.0",
"puppeteer": "^24.38.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"robots-parser": "^3.0.1",
"sitemapper": "^4.1.4",
"tabbable": "^6.4.0",
"tesseract.js": "^7.0.0",
"tinyld": "^1.3.4",
"uuid": "^13.0.0",
"wcag-contrast": "^3.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pngjs": "^6.0.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9",
"eslint-config-next": "15.5.12",
"happy-dom": "^20.10.2",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"@siteimprove/alfa-act": "^0.117.0",
"@siteimprove/alfa-dom": "^0.117.0",
"@siteimprove/alfa-playwright": "^0.84.0",
"@siteimprove/alfa-rules": "^0.117.0"
}
}