-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
85 lines (85 loc) · 2.49 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
83
84
85
{
"name": "eslint-config-kentcdodds",
"version": "0.0.0-semantically-released",
"description": "ESLint rules according to kentcdodds' personal preference",
"keywords": [
"eslint",
"eslintconfig",
"config",
"kentcdodds",
"javascript",
"styleguide"
],
"homepage": "https://github.com/kentcdodds/eslint-config-kentcdodds#readme",
"bugs": {
"url": "https://github.com/kentcdodds/eslint-config-kentcdodds/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/eslint-config-kentcdodds"
},
"license": "MIT",
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com)",
"main": "index.js",
"scripts": {
"find-new-rules": "npm-run-all --parallel find-new-rules:*",
"find-new-rules:jest": "eslint-find-rules --unused ./other/test/jest/index.js",
"find-new-rules:jsx-a11y": "eslint-find-rules --unused ./other/test/jsx-a11y/index.js",
"find-new-rules:main": "eslint-find-rules --unused ./index.js",
"find-new-rules:react": "eslint-find-rules --unused ./other/test/react/index.js",
"lint": "eslint --config index.js .",
"prepare": "husky install .config/husky",
"test": "npm-run-all --parallel lint find-new-rules",
"validate": "npm-run-all --parallel lint test"
},
"eslintConfig": {
"extends": "./index.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"dependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"read-pkg-up": "^7.0.1",
"semver": "^7.3.8"
},
"devDependencies": {
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.5",
"eslint": "^8.32.0",
"eslint-find-rules": "^4.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.3",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"eslint": "^8.0.0",
"typescript": "4 - 5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0",
"npm": ">=10",
"yarn": ">=1"
}
}