-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.37 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
{
"name": "accessibility-test-strategy",
"version": "1.0.0",
"description": "Automated accessibility testing suite using axe-core, Playwright, jest-axe, and Pa11y for WCAG 2.1 AA compliance on an ecommerce checkout flow.",
"author": {
"name": "Darrius Jones",
"url": "https://github.com/Djones-qa"
},
"license": "MIT",
"scripts": {
"test": "jest --runInBand",
"test:e2e": "playwright test",
"test:e2e:report": "playwright test --reporter=html",
"test:pa11y": "ts-node scripts/pa11y-audit.ts",
"test:all": "npm run test && npm run test:e2e && npm run test:pa11y",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.49.1",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/node": "20.14.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"axe-core": "4.9.1",
"jest": "29.7.0",
"jest-axe": "8.0.0",
"jest-environment-jsdom": "29.7.0",
"pa11y": "8.0.0",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"typescript": "5.4.5"
}
}