-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 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
{
"name": "@shakuroinc/eslint-config-react",
"version": "6.4.3",
"main": ".eslintrc.js",
"author": "Shakuro team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shakurocom/eslint-config-react"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx,.js,.mdx,.md --ignore-path .gitignore",
"release": "git push origin master --tags && npm publish --access public --new-version"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-mdx": "^2.1.0",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"react": "^18.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-mdx": "^2.0.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tailwindcss": "^3.7.1",
"prettier-plugin-tailwindcss": "^0.2.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"volta": {
"node": "18.12.1",
"yarn": "1.18.0"
}
}