-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.82 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
{
"name": "eslint-config-gev",
"version": "4.5.1",
"description": "Curated ESLint configs for TS, JS, Next, React, and React Native projects",
"author": "SrBrahma",
"main": "index.js",
"bin": "bin.js",
"scripts": {
"format": "biome check --apply-unsafe . && eslint --fix . package.json",
"format:check": "biome check . && eslint . package.json",
"pre-commit": "bun format && bun start && git add -A",
"prepare": "bunx husky",
"start": "bun scripts/makeTsExtensions.ts",
"test:watch": "bun test --watch",
"watch": "bun --watch scripts/makeTsExtensions.ts"
},
"files": [
"*.js",
"examples/*.js"
],
"license": "MIT",
"homepage": "https://github.com/SrBrahma/eslint-config-gev#readme",
"keywords": [
"gev",
"eslint",
"eslint-config",
"eslintconfig",
"typescript",
"react",
"react-native",
"javascript"
],
"dependencies": {
"@next/eslint-plugin-next": "^14.2.3",
"@rushstack/eslint-patch": "^1.10.3",
"@stylistic/eslint-plugin": "2.1.0",
"@typescript-eslint/eslint-plugin": "7.10.0",
"@typescript-eslint/parser": "7.10.0",
"citty": "0.1.6",
"eslint": "8.56.0",
"eslint-config-biome": "^1.7.3",
"eslint-plugin-jsdoc": "48.2.6",
"eslint-plugin-json-files": "^4.2.0",
"eslint-plugin-no-autofix": "2.0.0",
"eslint-plugin-no-relative-import-paths": "1.5.4",
"eslint-plugin-prefer-arrow-functions": "3.3.2",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-native": "4.1.0",
"eslint-plugin-require-extensions": "0.1.3",
"eslint-plugin-unused-imports": "3.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@sindresorhus/tsconfig": "5.0.0",
"@types/bun": "^1.1.3",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "9.0.11"
}
}