forked from transitive-bullshit/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@fisch0920/eslint-config",
"description": "Transitive Bullshit eslint config.",
"version": "0.2.1",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "transitive-bullshit/eslint-config"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"type": "commonjs",
"main": "index.js",
"exports": {
".": {
"require": "./index.js",
"default": "./index.js"
},
"./node": {
"require": "./node.js",
"default": "./node.js"
}
},
"files": [
"readme.md",
"config",
"index.js",
"node.js"
],
"scripts": {
"test": "run-s test:*",
"test:format": "prettier --check \"**/*.{js,json}\"",
"test:lint": "eslint .",
"release": "np"
},
"dependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@typescript-eslint/utils": "^7.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0"
},
"devDependencies": {
"@types/eslint": "^8.56.5",
"eslint": "^8.57.0",
"lint-staged": "^15.2.2",
"np": "^10.0.2",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"eslint": "^8.0.0",
"typescript": "^5.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}