-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
{
"name": "@ravnhq/eslint-config",
"version": "0.0.0-development",
"main": "index.js",
"author": "Donovan Hiland <donovan.hiland@gmail.com>",
"license": "MIT",
"scripts": {
"format": "yarn prettier .",
"format:write": "yarn format --write .",
"format:check": "yarn format --check .",
"lint": "eslint --cache --ext ts,tsx,js,mjs",
"lint:all": "yarn lint .",
"validate": "npm-run-all --parallel format:check lint:all",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.4.3",
"@ravnhq/prettier-config": "^1.0.0",
"@types/node": "^20.10.5",
"@types/react": "^18.0.18",
"eslint": "8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"react": "^18.2.0",
"semantic-release": "^22.0.12",
"typescript": "^5.1.6"
},
"dependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@rushstack/eslint-patch": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-security": "^2.1.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-unicorn": "^50.0.1",
"read-package-up": "^11.0.0"
},
"peerDependencies": {
"eslint": ">=8.38.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=18.17.0"
},
"lint-staged": {
"*.{json,md,yml}": "yarn format:write"
}
}