-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.92 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
{
"name": "@cabify/eslint-config",
"version": "2.1.4",
"description": "ESLint config for Cabify Javascript projects",
"scripts": {
"build": "echo 'No build to perform'",
"test": "npm run lint:check && npm run format:check",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "echo 'No typecheck to perform'",
"test:ci": "echo 'No test to perform'",
"publish:major": "npm version major",
"publish:minor": "npm version minor",
"publish:patch": "npm version patch",
"publish:canary": "npm version prerelease --preid=beta"
},
"license": "Apache-2.0",
"repository": "github:cabify/eslint-config",
"homepage": "https://github.com/cabify/eslint-config#readme",
"bugs": {
"url": "https://github.com/cabify/eslint-config/issues"
},
"keywords": [
"javascript",
"react",
"check",
"checker",
"code",
"eslint",
"lint",
"style",
"standards"
],
"main": "./legacy.js",
"exports": {
".": "./legacy.js",
"./legacy": "./legacy.js",
"./recommended": "./recommended.js"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"confusing-browser-globals": "^1.0.10",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1"
},
"peerDependencies": {
"eslint": ">= 8.0.1",
"prettier": ">= 2.2.1"
},
"devDependencies": {
"eslint": "8.57.0",
"prettier": "3.3.3"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.14.0",
"yarn": "1.22.17"
}
}