-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "@habx/eslint-config-client",
"version": "6.11.0",
"description": "Habx eslint configuration for clients.",
"main": "index.js",
"scripts": {
"lint": "eslint *.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/habx/eslint-config-client.git"
},
"keywords": [
"eslint",
"habx",
"lint"
],
"author": "habx",
"license": "ISC",
"bugs": {
"url": "https://github.com/habx/eslint-config-client/issues"
},
"homepage": "https://github.com/habx/eslint-config-client#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-eslint": "^10.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.9.1",
"prettier-eslint": "^14.1.0"
},
"devDependencies": {
"husky": "^5.2.0",
"lint-staged": "^13.1.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}