-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.4 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
80
81
82
83
84
85
{
"name": "@dtrw/eslint-config",
"version": "5.5.2",
"author": "Bartosz Dotryw <[email protected]>",
"description": "Custom eslint configs",
"keywords": [
"eslint",
"config",
"eslint config",
"typescript",
"json"
],
"license": "MIT",
"dependencies": {
"@eslint/json": "0.10.0",
"@next/eslint-plugin-next": "~15.0.0 || ~15.1.0",
"@stylistic/eslint-plugin": "2.13.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-jsonc": "2.19.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-lodash": "8.0.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-security-node": "1.1.4",
"eslint-plugin-testing-library": "7.1.1",
"globals": "15.14.0",
"jsonc-eslint-parser": "2.4.0",
"semver": "^7.6.3",
"typescript-eslint": "8.22.0"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@types/semver": "^7.5.8",
"commit-and-tag-version": "^12.5.0",
"eslint": "~9.19.0",
"exit-code": "^1.0.2",
"jest": "^29.7.0",
"jiti": "^2.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.7.2"
},
"peerDependencies": {
"eslint": "^9.6.0",
"typescript": ">=4.7.4"
},
"private": false,
"scripts": {
"lint": "eslint {configs,rules}/**/*.js",
"make-types": "rimraf types && tsc --project tsconfig.build.json",
"test": "jest tests/tests.test.ts",
"preversion": "yarn test",
"push": "git push --follow-tags",
"prerelease": "yarn test",
"release": "commit-and-tag-version",
"release:alpha": "commit-and-tag-version --prerelease alpha"
},
"homepage": "https://github.com/burtek/eslint-config#readme",
"bugs": "https://github.com/burtek/eslint-config/issues",
"repository": {
"url": "https://github.com/burtek/eslint-config"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"default": "./index.js",
"types": "./types/index.d.ts"
}
}
}