forked from kentcdodds/eslint-config-kentcdodds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.39 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
86
87
88
89
90
91
92
93
94
{
"name": "@ajstrand/eslint-config",
"version": "0.0.1",
"description": "ESLint rules collection",
"main": "index.js",
"scripts": {
"find-new-rules": "npm-run-all --parallel find-new-rules:*",
"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"
},
"repository": {
"type": "git",
"url": "add me"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"javascript",
"styleguide"
],
"author": "me",
"license": "MIT",
"bugs": {
"url": "add me"
},
"homepage": "add me",
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@babel/eslint-plugin": "^7.14.5",
"@babel/preset-react": "^7.16.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.3",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^5.0.0",
"read-pkg-up": "^9.0.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@testing-library/dom": "^8.11.0",
"@testing-library/jest-dom": "^5.15.0",
"eslint": "^7.32.0",
"eslint-find-rules": "^3.6.1",
"eslint-plugin-import": "^2.25.2",
"husky": "^6.0.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"preact": "^10.5.14",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"react": "^17.0.2",
"typescript": "^4.4.2"
},
"peerDependencies": {
"eslint": "^7.5.0",
"typescript": "^4.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"react": {
"optional": true
},
"preact": {
"optional": true
}
},
"eslintConfig": {
"extends": "./index.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"engines": {
"node": "^10.12.0 || >=12.0.0",
"npm": ">=6",
"yarn": ">=1"
}
}