-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.13 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
{
"name": "@guardian/eslint-config",
"version": "10.0.0",
"description": "ESLint config for Guardian JavaScript projects",
"type": "module",
"main": "index.js",
"scripts": {
"fix": "wireit",
"lint": "wireit"
},
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
"@eslint/js": "9.16.0",
"@stylistic/eslint-plugin": "2.11.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import-x": "4.4.3",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-storybook": "0.11.1",
"globals": "15.13.0",
"read-package-up": "11.0.0",
"typescript-eslint": "8.16.0"
},
"devDependencies": {
"eslint": "9.14.0",
"wireit": "0.14.8"
},
"peerDependencies": {
"eslint": "^9.14.0"
},
"wireit": {
"lint": {
"command": "eslint --cache --color .",
"files": [
"**",
"!.eslintcache"
],
"output": []
},
"fix": {
"command": "eslint --cache --color . --fix",
"clean": false,
"files": [
"**",
"!.eslintcache"
],
"output": [
"."
]
}
}
}