-
Notifications
You must be signed in to change notification settings - Fork 420
/
package.json
54 lines (54 loc) · 1.43 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": "eslint-config-wesbos",
"version": "4.3.2",
"description": "ESLint and Prettier Config from Wes Bos",
"keywords": [
"javascript",
"typescript",
"ecmascript",
"eslint",
"eslint-config",
"lint",
"config",
"prettier"
],
"main": "index.js",
"repository": "[email protected]:wesbos/eslint-config-wesbos.git",
"author": "Wes bos <[email protected]>",
"license": "MIT",
"peerDependencies": {
"eslint": "^8.0.0",
"prettier": ">=3.0.0",
"typescript": "^4.8.4 || ^5.0.0"
},
"eslintConfig": {
"extends": [
"./.eslintrc.js"
]
},
"dependencies": {
"eslint": "^8.0.0",
"prettier": ">=3.0.0",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-react": "^7.24.7",
"@rushstack/eslint-patch": "^1.10.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix",
"bump:beta": "npm version prerelease --preid beta",
"publish:beta": "npm publish --tag beta"
}
}