-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.51 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.51 KB
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
86
87
88
89
90
91
92
{
"name": "@croct/eslint-plugin",
"version": "0.0.0-dev",
"description": "ESLint rules and presets applied to all Croct JavaScript projects.",
"keywords": [
"eslint",
"eslint-plugin",
"config",
"croct",
"javascript",
"styleguide",
"typescript",
"react",
"cypress"
],
"homepage": "https://github.com/croct-tech/coding-standard-js",
"bugs": {
"url": "https://github.com/croct-tech/coding-standard-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/coding-standard-js.git"
},
"license": "MIT",
"author": {
"name": "Croct",
"email": "lib+coding-standard-js@croct.com",
"url": "https://croct.com"
},
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"scripts": {
"build": "tsdown",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test": "jest -c jest.config.js --coverage",
"validate": "tsc --noEmit"
},
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.0",
"@eslint/compat": "^2.0.2",
"@stylistic/eslint-plugin": "^5.9.0",
"@typescript-eslint/typescript-estree": "^8.56.1",
"@typescript-eslint/utils": "^8.56.1",
"eslint-plugin-cypress": "^6.1.0",
"eslint-plugin-eslint-plugin": "^7.3.1",
"eslint-plugin-import-newlines": "^2.0.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-newline-destructuring": "^1.2.2",
"eslint-plugin-self": "^1.2.1",
"eslint-plugin-testing-library": "^7.16.0",
"globals": "^17.4.0",
"typescript-eslint": "^8.56.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/semver": "^7.7.1",
"@typescript-eslint/parser": "^8.56.1",
"@typescript-eslint/rule-tester": "^8.56.1",
"@typescript-eslint/types": "^8.56.1",
"eslint": "^10.0.2",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"tsdown": "^0.21.0-beta.2",
"typescript": "~5.9.3"
},
"peerDependencies": {
"@typescript-eslint/parser": ">= 8",
"eslint": ">= 10"
},
"overrides": {
"eslint-plugin-jsx-a11y": {
"eslint": "$eslint"
},
"eslint-plugin-jest-dom": {
"eslint": "$eslint"
},
"eslint-plugin-react": {
"eslint": "$eslint"
},
"eslint-plugin-react-hooks": {
"eslint": "$eslint"
},
"eslint-plugin-import-x": {
"eslint": "$eslint"
}
}
}