-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.07 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
{
"name": "eslint-config-welly",
"version": "2.0.0",
"description": "ESLint configuration for React projects that I do. Feel free to use this!",
"license": "MIT",
"homepage": "https://github.com/wellyshen/eslint-config-welly",
"repository": "https://github.com/wellyshen/eslint-config-welly",
"bugs": "https://github.com/wellyshen/eslint-config-welly/issues",
"keywords": [
"eslint",
"eslint-config",
"airbnb",
"prettier",
"typescript",
"browser-compatibility",
"jest",
"testing-library",
"a11y",
"import",
"promise",
"async-await"
],
"author": "Welly Shen <hivoid19@gmail.com> (https://github.com/wellyshen)",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "eslint tests/*",
"lint": "yarn lint:code && yarn lint:format",
"lint:code": "eslint --fix index.js",
"lint:format": "prettier -w . -u --loglevel silent",
"preversion": "yarn lint",
"postversion": "git push --follow-tags --no-verify && npm publish",
"prepare": "husky install"
},
"lint-staged": {
"index.js": "eslint --fix",
"**/*": "prettier -w -u"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.5.1",
"read-pkg-up": "^7.0.1"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"eslint": "^8.2.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"eslint": "^8.2.0",
"typescript": "^4.5.4"
}
}