-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.58 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
70
71
72
73
74
75
76
77
78
79
{
"name": "@relaycorp/eslint-config",
"version": "1.0.0",
"author": {
"email": "[email protected]",
"name": "Relaycorp, Inc.",
"url": "https://relaycorp.tech/"
},
"description": "ESLint configuration for all Relaycorp projects",
"main": "index.js",
"type": "module",
"repository": "https://github.com/relaycorp/eslint-config",
"license": "MIT",
"scripts": {
"build": "exit 0",
"fix": "npm-run-all --parallel fix:*",
"fix:prettier": "prettier --write --list-different .",
"fix:lint": "eslint --fix .",
"static-checks": "npm-run-all --parallel static-checks:*",
"static-checks:prettier": "prettier --check .",
"static-checks:lint": "eslint .",
"test": "exit 0",
"test:integration": "exit 0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@relaycorp/shared-config": "^1.15.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin-js": "^2.9.0",
"@stylistic/eslint-plugin-ts": "^2.10.1",
"eslint": "^9.12.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-array-func": "^5.0.2",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^17.13.2",
"eslint-plugin-no-explicit-type-exports": "^0.12.1",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-putout": "^23.2.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^2.0.3",
"eslint-plugin-unicorn": "^56.0.0",
"prettier": "^3.3.3",
"putout": "^36.9.0",
"typescript-eslint": "^8.13.0"
},
"peerDependencies": {
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin-js": "^2.9.0",
"@stylistic/eslint-plugin-ts": "^2.10.1",
"eslint": "^9.12.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-array-func": "^5.0.2",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^17.13.2",
"eslint-plugin-no-explicit-type-exports": "^0.12.1",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-putout": "^23.2.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^2.0.3",
"eslint-plugin-unicorn": "^56.0.0",
"prettier": "^3.3.3",
"putout": "^36.9.0",
"typescript-eslint": "^8.13.0"
},
"prettier": "@relaycorp/shared-config/.prettierrc.json"
}