-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 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
{
"name": "@croct/eslint-plugin",
"version": "0.0.0-dev",
"description": "ESLint rules and presets applied to all Croct JavaScript projects.",
"license": "MIT",
"author": {
"name": "Croct",
"email": "lib+coding-standard-js@croct.com",
"url": "https://croct.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/coding-standard-js.git"
},
"bugs": {
"url": "https://github.com/croct-tech/coding-standard-js/issues"
},
"homepage": "https://github.com/croct-tech/coding-standard-js",
"scripts": {
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test": "jest -c jest.config.js --coverage",
"validate": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json"
},
"keywords": [
"eslint",
"eslint-plugin",
"config",
"croct",
"javascript",
"styleguide",
"typescript",
"react",
"cypress"
],
"dependencies": {
"@rushstack/eslint-patch": "^1.6",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/utils": "^7.0.0",
"eslint-config-airbnb": "^19.0",
"eslint-config-airbnb-base": "^15.0",
"eslint-plugin-cypress": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29",
"eslint-plugin-import-newlines": "^1.3",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.8",
"eslint-plugin-newline-destructuring": "^1.2.1",
"eslint-plugin-no-smart-quotes": "^1.3",
"eslint-plugin-react": "^7.33",
"eslint-plugin-react-hooks": "^4.6",
"eslint-plugin-testing-library": "^6.2.0"
},
"devDependencies": {
"@types/eslint": "^8.44",
"@types/jest": "^29.5.11",
"@types/semver": "^7.5.6",
"@typescript-eslint/parser": "^7.0.0",
"@typescript-eslint/types": "^7.0.0",
"@typescript-eslint/typescript-estree": "^7.0.0",
"eslint": "^9.0.0",
"eslint-plugin-eslint-plugin": "^6.0.0",
"eslint-plugin-self": "^1.2.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "~5.4.0"
},
"peerDependencies": {
"@typescript-eslint/parser": ">= 6",
"eslint": ">= 8"
},
"overrides": {
"@typescript-eslint/typescript-estree": "$@typescript-eslint/typescript-estree",
"@typescript-eslint/parser": "$@typescript-eslint/parser",
"@typescript-eslint/types": "$@typescript-eslint/types"
}
}