-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
{
"name": "eslint-config-react-stockulus",
"version": "1.1.0",
"description": "eslint package for react projects",
"scripts": {
"test": "yarn lint",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"updtr": "yarn upgrade-interactive --latest",
"prerelease": "yarn test",
"version:patch": "yarn version --patch",
"version:minor": "yarn version --minor",
"version:major": "yarn version --major",
"postversion": "git push && git push --tags"
},
"files": [
"index.js",
".eslintrc.js"
],
"main": "index.js",
"private": false,
"repository": "[email protected]:stockulus/eslint-config-react.git",
"homepage": "https://github.com/stockulus/eslint-config-react",
"author": {
"email": "[email protected]",
"name": "Christoph Stock",
"url": "https://github.com/stockulus/"
},
"license": "MIT",
"keywords": [
"eslint",
"stockulus",
"react"
],
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"eslint": ">= 8.0.0",
"postcss": ">= 8.0.0",
"tailwindcss": ">= 3.0.0",
"typescript": ">= 4.0.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"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.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.14.3",
"prettier": "^3.2.5"
},
"devDependencies": {
"eslint": "^8.56.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}