-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.35 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "eslint-config-superop",
"description": "A Super Opinionated ESLint Shareable Config with Prettier",
"version": "1.5.0",
"main": "index.js",
"files": [
".editorconfig",
".eslintignore",
".prettierignore",
".prettierrc.js",
"import-resolver-babel.js",
"jest.js",
"mocha.js",
"react-jest.js",
"react-native.js",
"react-new-jsx.js",
"react.js",
"typescript.js"
],
"scripts": {
"eslint": "eslint . --ext .ts,.tsx,.js,.jsx --max-warnings 0 --config ./.eslintrc.js",
"prettier": "prettier \"**/{*,}.{json,*rc}\" --config ./.prettierrc.js --check",
"lint": "yarn eslint & yarn prettier",
"lint-fix": "yarn eslint --fix & yarn prettier --write",
"postinstall": "patch-package || exit 0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npx yarn-lock-fix && lint-staged",
"post-commit": "git update-index --again",
"pre-push": "git fetch --prune origin \"+refs/tags/*:refs/tags/*\""
}
},
"lint-staged": {
"{*,}.js{,x}": "eslint --config ./.eslintrc.js --fix",
"{*,}.{json,*rc}": "prettier --config ./.prettierrc.js --write"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@release-it/conventional-changelog": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^4.3.8",
"lint-staged": "^15.1.0",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.1.0",
"release-it": "^17.0.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.1.0"
},
"license": "MIT",
"author": "DiogoAbu",
"repository": {
"type": "git",
"url": "git+https://github.com/DiogoAbu/eslint-config-superop.git"
},
"homepage": "https://github.com/DiogoAbu/eslint-config-superop",
"bugs": "https://github.com/DiogoAbu/eslint-config-superop/issues",
"keywords": [
"check",
"checker",
"code checker",
"code linter",
"code standards",
"code style",
"code",
"enforce",
"eslint",
"eslintconfig",
"hint",
"jscs",
"jshint",
"lint",
"opinionated",
"policy",
"prettier",
"quality",
"style checker",
"style linter",
"style",
"verify"
],
"volta": {
"node": "20.10.0",
"yarn": "1.22.19"
}
}