-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "eslint-config-neo",
"version": "0.12.0",
"description": "Official Neo Financial ESLint configuration",
"main": "index.js",
"author": "Neo Financial Engineering <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/neofinancial/eslint-config-neo",
"repository": {
"type": "git",
"url": "https://github.com/neofinancial/eslint-config-neo.git"
},
"engines": {
"npm": ">=8.0.0"
},
"files": [
"*.js"
],
"scripts": {
"format": "prettier --write \"**/*.{js,json,yaml,yml,md}\"",
"format:check": "prettier --check \"**/*.{js,json,yaml,yml,md}\"",
"prepare": "husky install",
"precommit": "lint-staged"
},
"peerDependencies": {
"eslint": "^8.34.0",
"prettier": "^3.0.0",
"typescript": "^3.7.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^51.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
}
}