-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "@nkzw/eslint-config",
"version": "2.0.0",
"description": "ESLint config with sensible defaults.",
"author": "Christoph Nakazawa <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/cpojer/eslint-config.git"
},
"main": "index.js",
"type": "module",
"keywords": [
"eslint",
"config",
"defaults",
"strict",
"autofix"
],
"license": "MIT",
"dependencies": {
"@eslint/js": "^9.17.0",
"@nkzw/eslint-plugin": "^1.8.0",
"@typescript-eslint/parser": "^8.19.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-unused-imports": "~4.1.4",
"globals": "^15.14.0",
"typescript-eslint": "^8.19.1"
},
"devDependencies": {
"eslint": "^9.17.0"
},
"peerDependencies": {
"eslint": ">= 9"
},
"scripts": {
"lint": "eslint -c index.js ."
}
}