-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
58 lines (58 loc) · 1.27 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
{
"name": "axe-core-npm",
"private": true,
"license": "MPL-2.0",
"workspaces": [
"packages/*",
"test/axe-core",
"test/wdio"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fmt": "prettier --write .",
"lint": "eslint .",
"prepare": "husky install",
"precommit": "lint-staged",
"build": "npm run --workspaces build"
},
"devDependencies": {
"axe-test-fixtures": "github:dequelabs/axe-test-fixtures#v1",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.2.0",
"husky": "^9.0.10",
"lerna": "8.1.3",
"lint-staged": "^15.1.0",
"prettier": "^3.0.3",
"react": "^17.0.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.0.0-alpha.12"
},
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 80,
"bracketSpacing": true,
"useTabs": false,
"trailingComma": "none",
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md,html}": [
"prettier --write"
]
},
"dependencies": {
"browser-driver-manager": "^2.0.0"
}
}