-
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) · 2.7 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.7 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": "a11y_testing",
"version": "1.0.0",
"description": "Show some strategies regarding a11y and testing.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"prettier": "prettier --write .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --output-dir storybook-static",
"test:storybook": "JEST_JUNIT_OUTPUT_DIR=reports JEST_JUNIT_OUTPUT_NAME=storybook.xml test-storybook --junit",
"test:testing-library": "vitest --config ./vitest.config.js",
"test:playwright": "PLAYWRIGHT_JUNIT_OUTPUT_DIR=reports PLAYWRIGHT_JUNIT_OUTPUT_NAME=playwright.xml playwright test -c playwright-ct.config.js --reporter=junit",
"test:screenreader:virtual": "vitest --config ./vitest.virtual.config.js",
"test:screenreader:voiceover": "PLAYWRIGHT_JUNIT_OUTPUT_DIR=reports PLAYWRIGHT_JUNIT_OUTPUT_NAME=voiceover.xml playwright test -c playwright.voiceover.config.js --reporter=junit",
"merge:sarif": "rm reports/merged.sarif; sh -c 'jq -s \"{ version: \\\"2.1.0\\\", \\\"\\$schema\\\": \\\"https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json\\\", runs: map(.runs) | add }\" $(find reports -name \"*.sarif\") > reports/merged.sarif'"
},
"dependencies": {
"@vitejs/plugin-react-swc": "^3.10.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tabbable": "^6.2.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@guidepup/virtual-screen-reader": "^0.32.1",
"@playwright/experimental-ct-react": "^1.52.0",
"@playwright/test": "^1.52.0",
"@storybook/addon-a11y": "^8.6.14",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@storybook/test": "^8.6.14",
"@storybook/test-runner": "^0.22.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.15.18",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "^3.1.3",
"@vitest/coverage-v8": "^3.1.3",
"axe-playwright": "^2.1.0",
"axe-sarif-converter": "^3.0.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.52.0",
"prettier": "3.5.3",
"prop-types": "^15.8.1",
"storybook": "^8.6.13",
"vite": "^6.3.1",
"vitest": "^3.1.3"
},
"author": "Manuel Sánchez",
"license": "MIT"
}