-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.96 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
{
"name": "@namely/eslint-config-namely",
"version": "9.0.0",
"description": "Namely's ESLint config",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretty-quick": "pretty-quick",
"print-config": "eslint --print-config *.js"
},
"dependencies": {
"eslint-config-airbnb": "^18.2.1"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/eslint-parser": "^7.16.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^3.0.9",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.2",
"typescript": "^4.5.2"
},
"peerDependencies": {
"@babel/core": "^7.1.0",
"@babel/eslint-parser": "^7.16.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^7.32.0 || ^8.4.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0"
},
"husky": {
"hooks": {
"post-checkout": "node ./scripts/dep-checker.js",
"post-merge": "node ./scripts/dep-checker.js",
"post-rewrite": "node ./scripts/dep-checker.js",
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/namely/eslint-config-namely.git"
},
"keywords": [
"eslint",
"lint",
"config",
"javascript"
],
"author": "Namely",
"license": "MIT",
"bugs": {
"url": "https://github.com/namely/eslint-config-namely/issues"
},
"homepage": "https://github.com/namely/eslint-config-namely#readme"
}