-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.75 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
{
"name": "eslint-config-heck",
"version": "1.5.0",
"description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
"type": "module",
"main": "index.js",
"exports": {
"./biome": "./biomeLinting.json",
"./node": "./node.cjs",
"./nodeWithBiome": "./nodeWithBiome.cjs",
"./complexity": "./complexity.cjs",
"./groupImports": "./groupImports.cjs",
"./reactNative": "./reactNative.cjs"
},
"scripts": {
"update": "npx -y npm-check-updates -i --install never && npx -y npm-check-updates -i --target minor --install never && npx -y npm-check-updates -i --target patch --install never && npm update --force",
"lint": "eslint .",
"semantic-release": "semantic-release"
},
"keywords": [
"ESLint",
"ES2015",
"TypeScript",
"React"
],
"author": "atheck",
"license": "MIT",
"dependencies": {
"@eslint/compat": "1.2.4",
"@stylistic/eslint-plugin": "2.12.1",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"eslint": "9.17.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-native": "4.1.0",
"eslint-plugin-testing-library": "7.1.1",
"eslint-plugin-unicorn": "56.0.1",
"typescript": "5.7.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.1.0",
"@types/jest": "29.5.14",
"@types/react": "18.3.17",
"globals": "15.13.0",
"jest": "29.7.0",
"react": "18.3.1",
"semantic-release": "24.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/atheck/eslint-config-heck.git"
}
}