-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 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
{
"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",
"puppeteer": "^24.38.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"robots-parser": "^3.0.1",
"sitemapper": "^4.1.4",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@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",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.18"
}
}