This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.25 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
{
"name": "eslint-config-sznm",
"version": "2.0.4",
"description": "sozonome's ESLint configuration",
"main": "index.js",
"deprecated": "This config library is deprecated. Please use other alternatives (see readme).",
"scripts": {
"lint": "eslint --config index.js .",
"lint:fix": "yarn lint --fix && yarn format",
"format": "prettier -w",
"up-interactive": "pnpm up -i",
"up-latest": "pnpm up-interactive -L",
"release": "cross-env HUSKY=0 standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sozonome/eslint-config-sznm.git"
},
"author": "sozonome",
"license": "MIT",
"bugs": {
"url": "https://github.com/sozonome/eslint-config-sznm/issues"
},
"homepage": "https://github.com/sozonome/eslint-config-sznm#readme",
"keywords": [
"eslintconfig",
"eslint",
"config",
"sozonome",
"typescript",
"react",
"javascript",
"styleguide"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.24.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"typescript": "^5.4.2"
},
"peerDependencies": {
"eslint": "^7.32.0 || ^8.2.0",
"prettier": "3.x"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"eslintConfig": {
"extends": "./index.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"packageManager": "pnpm@8.9.0+sha512.ef8859938e1f0537b9fcf0309044311392f3b38b344176e6cd4fdee21b225524b0ac2a1b08ae2ae2ddd5b3ff4b8ca496d6778e950f3e7c9f555b81325982441c"
}