-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
82 lines (82 loc) · 2.51 KB
/
package.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@chanzuckerberg/axe-storybook-testing",
"version": "8.2.1",
"license": "MIT",
"homepage": "https://github.com/chanzuckerberg/axe-storybook-testing",
"repository": {
"type": "git",
"url": "https://github.com/chanzuckerberg/axe-storybook-testing.git"
},
"bin": {
"axe-storybook": "./bin/axe-storybook.js"
},
"main": "build/index.js",
"files": [
"bin",
"build",
"index.d.ts"
],
"publishConfig": {
"access": "public"
},
"workspaces": [
"demo"
],
"scripts": {
"build": "npm run clean && tsc --project tsconfig.build.json",
"clean": "rimraf ./build",
"demo": "npm run build && npm run --workspace=demo storybook:axe --",
"demo:axeOnly": "npm run build && npm run --workspace=demo storybook:axeOnly --",
"demo:build": "npm run --workspace=demo build-storybook",
"demo:eds": "axe-storybook --storybook-url https://chanzuckerberg.github.io/edu-design-system",
"demo:storybook": "npm --workspace=demo run storybook",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"test": "vitest run --dir src",
"test:integration": "npm run build && npm run demo:build && npm run test:integrationOnly",
"test:integrationOnly": "vitest run --dir tests/integration --poolOptions.threads.singleThread",
"types": "tsc --noEmit",
"validate": "npm run lint && npm run types && npm run test"
},
"dependencies": {
"@playwright/browser-chromium": "^1.47.2",
"http-server": "^14.1.1",
"indent-string": "^4.0.0",
"lodash": "^4.17.21",
"mocha": "^10.7.3",
"p-timeout": "^4.1.0",
"playwright": "^1.47.2",
"portfinder": "^1.0.32",
"ts-dedent": "^2.2.0",
"yargs": "^17.7.2",
"zod": "^3.23.8"
},
"peerDependencies": {
"@storybook/preview-api": "^7.0.0 || ^8.0.0",
"axe-core": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@storybook/preview-api": "^8.3.2",
"@storybook/types": "^8.3.2",
"@types/eslint": "^9.6.1",
"@types/http-server": "^0.12.4",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.5",
"@types/yargs": "^17.0.33",
"@vitest/eslint-plugin": "^1.1.4",
"axe-core": "^4.10.0",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.5",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"vitest": "^2.1.1"
}
}