-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.2 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@aboutbits/eslint-config",
"version": "3.0.0",
"description": "AboutBits' ESLint config presets",
"author": "AboutBits",
"license": "MIT",
"homepage": "https://github.com/aboutbits/eslint-config",
"repository": {
"type": "git",
"url": "git+https://github.com/aboutbits/eslint-config"
},
"bugs": {
"url": "https://github.com/aboutbits/eslint-config/issues"
},
"keywords": [
"eslint-config",
"eslintconfig",
"eslint",
"typescript",
"react"
],
"private": false,
"publishConfig": {
"access": "public"
},
"prettier": "@aboutbits/prettier-config",
"main": "ts.js",
"files": [
"readme.md",
"ts.js",
"ts-react.js",
"ts-next.js",
"formatjs.js"
],
"engines": {
"npm": ">=8",
"node": ">=16"
},
"scripts": {
"ts:lint": "eslint -c .eslintrc.ts.json test/ts",
"ts:lint:fix": "npm run ts:lint -- --fix",
"ts:typecheck": "tsc --project tsconfig.ts.json --noEmit",
"ts-react:lint": "eslint -c .eslintrc.ts-react.json test/ts-react",
"ts-react:lint:fix": "npm run ts-react:lint -- --fix",
"ts-react:typecheck": "tsc --project tsconfig.ts-react.json --noEmit",
"ts-next:lint": "eslint -c .eslintrc.ts-next.json test/ts-next",
"ts-next:lint:fix": "npm run ts-next:lint -- --fix",
"ts-next:typecheck": "tsc --project tsconfig.ts-next.json --noEmit",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@typescript-eslint/parser": "^6.1.0 || ^7.3.1",
"eslint-config-prettier": "^8.8.0 || ^9.1.0"
},
"devDependencies": {
"@aboutbits/prettier-config": "^1.6.1",
"@aboutbits/ts-config": "^1.1.3",
"@next/eslint-plugin-next": "^13.4.11",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-formatjs": "^4.12.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"@next/eslint-plugin-next": "^13.4.11 || ^14.1.4",
"@typescript-eslint/eslint-plugin": "^6.1.0 || ^7.3.1",
"eslint": "^8.45.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-formatjs": "^4.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"prettier": "^3.0.0"
},
"peerDependenciesMeta": {
"eslint-plugin-import": {
"optional": true
},
"eslint-plugin-jsx-a11y": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
},
"@next/eslint-plugin-next": {
"optional": true
},
"eslint-plugin-formatjs": {
"optional": true
},
"eslint-plugin-tailwindcss": {
"optional": true
}
}
}