-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "eslint-config-erb",
"version": "4.1.0",
"description": "The eslint config for electron-react-boilerplate",
"main": "index.js",
"repository": "https://github.com/electron-react-boilerplate/eslint-config-erb",
"contributors": [
{
"name": "Amila Welihinda",
"email": "amilajack@gmail.com",
"url": "https://github.com/amilajack"
}
],
"files": [
"index.js"
],
"license": "MIT",
"scripts": {
"test": "jest"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "^4.6.0"
},
"peerDependencies": {
"eslint": ">=7 || >=8",
"jest": ">=27.0.0",
"react": ">=17.0.0 || >=18.0.0"
},
"devDependencies": {
"eslint": "^8.49.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"typescript": "^5.2.2"
},
"eslintConfig": {
"extends": "./index.js"
},
"renovate": {
"extends": [
"bliss"
]
},
"engines": {
"node": ">=16.x.x"
}
}