-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "@agilecontent/eslint-config",
"version": "1.0.2",
"description": "Base config used by Agile Content",
"main": ".eslintrc.js",
"scripts": {
"prepare": "husky install",
"lint": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agilecontent/eslint-config.git"
},
"author": "Thiago 'Jedi' Cerqueira <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/agilecontent/eslint-config/issues"
},
"homepage": "https://github.com/agilecontent/eslint-config#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0"
},
"devDependencies": {
"@agilecontent/prettier-config": "^1.0.2",
"@types/node": "^17.0.31",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2"
},
"peerDependencies": {
"eslint": ">= 8.14.0"
},
"lint-staged": {
"*": "prettier -u --write"
},
"prettier": "@agilecontent/prettier-config"
}