-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
94 lines (94 loc) · 2.89 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "eslint-config-auto",
"version": "0.9.0",
"author": "David J. Bradshaw",
"maintainers": [
{
"name": "David J. Bradshaw",
"email": "[email protected]"
}
],
"description": "Automatically configure esLint based on project dependancies",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davidjbradshaw/eslint-config-auto.git"
},
"main": "index.js",
"scripts": {
"ci-test": "npm run test",
"eslint": "eslint --color *.{js,json,md} rules/** lib/**",
"eslint:fix": "eslint --color --fix *.{js,md} rules/** lib/**",
"eslint:print": "eslint --print-config ./tsconfig.json",
"prepublishOnly": "eslint-find-rules --no-core",
"test": "npm run eslint && npm run prepublishOnly"
},
"keywords": [
"airbnb",
"eslint",
"eslint-config",
"eslint-config-airbnb",
"unicorn"
],
"dependencies": {
"arrify": "^2.0.1",
"cosmiconfig": "^9.0.0",
"eslint-config-adjunct": ">=4.13.0",
"lodash": "^4.17.21",
"mkdir": "0.0.2",
"mkdirp": "^3.0.1",
"ramda": "^0.29.1",
"read-pkg-up": "7.0.1",
"rimraf": "^5.0.5"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-babel": "^0.2.2",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-find-rules": "^4.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-const-case": "^1.2.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-pii": "^1.0.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-security": "^2.1.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-xss": "^0.1.12",
"husky": "^9.0.11",
"in-publish": "^2.0.1",
"prettier": "^3.2.5",
"prettier-cli": "^0.1.0",
"react": "^18.2.0",
"react-native": "^0.73.4",
"safe-publish-latest": "^2.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">= 8.3"
}
}