-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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": "@ijsto/eslint-config",
"version": "5.0.12",
"description": "ESLint and Prettier setup",
"author": "Scott Agirs Neminskis <scott@ijs.to>",
"repository": "git@github.com:ijsto/eslint-config.git",
"license": "MIT",
"scripts": {
"lint": "eslint --report-unused-disable-directives .",
"lint:fix": "eslint --fix"
},
"main": "index.js",
"peerDependencies": {
"eslint": "^7.25.0 || ^8.0.0",
"prettier": ">= 2.x.x"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
}
},
"dependencies": {
"@babel/core": "^7.22.20",
"@babel/eslint-parser": "^7.22.15",
"@rushstack/eslint-patch": "^1.4.0",
"dot-prop": "^6.0.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.5.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"find-up": "5.0.0",
"read-pkg-up": "7.0.1",
"semver": "7.3.5"
},
"devDependencies": {
"eslint": "^8.0.0",
"prettier": "^3.0.3"
},
"keywords": [
"config",
"ecmascript",
"eslint",
"javascript",
"lint",
"prettier",
"vscode"
]
}