-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "@ridi/eslint-config",
"version": "6.1.0",
"description": "RIDI's ESLint configs for Javascript",
"main": "index.js",
"files": [
"babel.js",
"index.js",
"prettier.js",
"react.js",
"typescript.js"
],
"scripts": {
"test": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ridi/eslint-config.git"
},
"keywords": [
"eslint",
"eslintconfig",
"ridi",
"javascript"
],
"author": "RIDI",
"license": "MIT",
"bugs": {
"url": "https://github.com/ridi/eslint-config/issues"
},
"homepage": "https://github.com/ridi/eslint-config#readme",
"dependencies": {
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0"
},
"peerDependencies": {
"@babel/eslint-parser": ">=7.17.7",
"@babel/eslint-plugin": ">=7.17.7",
"@typescript-eslint/eslint-plugin": ">=5.30.7",
"@typescript-eslint/parser": ">=5.30.7",
"eslint": ">=7.2.0",
"eslint-plugin-import": ">=2.26.0",
"eslint-plugin-jsx-a11y": ">=6.6.0",
"eslint-plugin-prettier": ">=4.2.1",
"eslint-plugin-react": ">=7.30.1",
"eslint-plugin-react-hooks": ">=4.6.0"
}
}