-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.65 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
{
"name": "@rfgamaral/eslint-config-typescript-unified",
"description": "A unified ESLint configuration with sensible defaults for TypeScript projects.",
"version": "5.0.0",
"main": "./index.js",
"author": {
"name": "Ricardo Amaral",
"email": "[email protected]"
},
"license": "MIT",
"repository": "https://github.com/rfgamaral/eslint-config-typescript-unified",
"bugs": "https://github.com/rfgamaral/eslint-config-typescript-unified/issues",
"keywords": [
"airbnb",
"code linter",
"code standards",
"code style",
"config",
"eslint",
"eslint-config",
"eslintconfig",
"hooks",
"lint",
"prettier",
"react",
"react-hooks",
"styleguide",
"typescript",
"unified"
],
"engines": {
"node": "^16.0.0 || ^18.0.0",
"npm": "^7.0.0 || ^8.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"airbnb-react-hooks-semantics.js",
"airbnb-react-hooks.js",
"airbnb-react-semantics.js",
"airbnb-react.js",
"airbnb-semantics.js",
"airbnb.js",
"eslint-semantics.js",
"eslint.js",
"index.js",
"recommended-react-hooks-semantics.js",
"recommended-react-hooks.js",
"recommended-react-semantics.js",
"recommended-react.js",
"recommended-semantics.js",
"recommended.js",
"semantics.js"
],
"scripts": {
"commit": "git-cz",
"eslint": "eslint './**/*.js'",
"prepare": "husky install",
"release": "semantic-release",
"test": "jest",
"test:ci": "jest --coverage --colors",
"test:watch": "jest --watchAll"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.4",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "7.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.23.0",
"eslint-plugin-jest": "27.0.1",
"husky": "8.0.1",
"jest": "29.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"semantic-release": "19.0.5",
"typescript": "4.8.2"
},
"peerDependencies": {
"eslint": ">=8.23",
"prettier": ">=2",
"typescript": ">=4.8"
}
}