-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 1.7 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
{
"name": "@reactioncommerce/eslint-config",
"version": "0.0.0-development",
"description": "The ESLint config used by Reaction Commerce, following our style guide",
"scripts": {},
"repository": {
"type": "git",
"url": "https://github.com/reactioncommerce/reaction-eslint-config"
},
"keywords": [
"eslint",
"eslintconfig",
"reaction",
"reactioncommerce"
],
"author": "Reaction Commerce (https://reactioncommerce.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/reactioncommerce/reaction-eslint-config/issues"
},
"homepage": "https://github.com/reactioncommerce/reaction-eslint-config",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.5",
"semantic-release": "^17.0.7"
},
"peerDependencies": {
"eslint": ">=7",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-jsx-a11y": "~6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "~6.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.10.0",
"eslint-plugin-react": "~7.28.0",
"eslint-plugin-react-hooks": "~4.3.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint-config-react-app": "^7.0.1"
},
"engines": {
"node": ">=8.1.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"arrowParens": "always"
},
"release": {
"branches": [
"master"
]
},
"publishConfig": {
"access": "public"
}
}