-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.81 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.81 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
93
94
95
96
97
98
99
100
101
{
"name": "@itcode-dev/eslint-config",
"description": "itcode.dev ESLint Config",
"version": "3.11.1",
"type": "module",
"repository": "https://github.com/itcode-dev/eslint-config-itcode",
"author": "RWB0104 <psj2716@mensakorea.org>",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./base": {
"import": "./dist/base/index.js",
"types": "./dist/base/index.d.ts"
},
"./better-tailwindcss": {
"import": "./dist/better-tailwindcss/index.js",
"types": "./dist/better-tailwindcss/index.d.ts"
},
"./import": {
"import": "./dist/import/index.js",
"types": "./dist/import/index.d.ts"
},
"./jest": {
"import": "./dist/jest/index.js",
"types": "./dist/jest/index.d.ts"
},
"./next": {
"import": "./dist/next/index.js",
"types": "./dist/next/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
},
"./react-hooks": {
"import": "./dist/react-hooks/index.js",
"types": "./dist/react-hooks/index.d.ts"
},
"./sort-keys-fix": {
"import": "./dist/sort-keys-fix/index.js",
"types": "./dist/sort-keys-fix/index.d.ts"
},
"./stylistic": {
"import": "./dist/stylistic/index.js",
"types": "./dist/stylistic/index.d.ts"
},
"./tanstack": {
"import": "./dist/tanstack/index.js",
"types": "./dist/tanstack/index.d.ts"
},
"./tseslint": {
"import": "./dist/tseslint/index.js",
"types": "./dist/tseslint/index.d.ts"
},
"./unused-imports": {
"import": "./dist/unused-imports/index.js",
"types": "./dist/unused-imports/index.d.ts"
}
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.1.6",
"@rollup/plugin-typescript": "^12.1.2",
"@stylistic/eslint-plugin": "^5.0.0",
"@tanstack/eslint-plugin-query": "^5.64.2",
"@types/eslint-plugin-tailwindcss": "^3.17.0",
"@types/eslint__eslintrc": "^2.1.2",
"@types/node": "^22.10.10",
"eslint": "^9.21.0",
"eslint-plugin-better-tailwindcss": "^3.4.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^4.1.4",
"jiti": "^2.4.2",
"rollup": "^4.32.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.26.0"
},
"peerDependencies": {
"@next/eslint-plugin-next": "*",
"@stylistic/eslint-plugin": "*",
"@tanstack/eslint-plugin-query": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"eslint-plugin-react": "*",
"eslint-plugin-react-hooks": "*",
"eslint-plugin-sort-keys-fix": "*",
"eslint-plugin-unused-imports": "*",
"typescript-eslint": "*"
}
}