-
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.76 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.76 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": "@aboutbits/eslint-config",
"version": "5.0.1",
"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": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"type": "module",
"prettier": "@aboutbits/prettier-config",
"files": [
"configs/formatjs.js",
"configs/jest.js",
"configs/next.js",
"configs/react.js",
"configs/storybook.js",
"configs/tailwind.js",
"configs/ts.js",
"readme.md"
],
"exports": {
"./configs/formatjs": "./configs/formatjs.js",
"./configs/jest": "./configs/jest.js",
"./configs/next": "./configs/next.js",
"./configs/react": "./configs/react.js",
"./configs/tailwind": "./configs/tailwind.js",
"./configs/ts": "./configs/ts.js",
"./configs/storybook": "./configs/storybook.js"
},
"engines": {
"npm": ">=10",
"node": ">=18"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "npm run lint -- --fix",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.3",
"@eslint/json": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-better-tailwindcss": "^4.3.0",
"eslint-plugin-formatjs": "^6.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jsonc": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^6.1.1",
"eslint-plugin-sort-keys": "^2.3.5",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.3.0",
"typescript-eslint": "^8.56.1"
},
"devDependencies": {
"@aboutbits/prettier-config": "^2.0.2",
"@next/eslint-plugin-next": "^16.1.6",
"eslint-plugin-storybook": "^10.2.12",
"prettier": "^3.8.1"
},
"peerDependencies": {
"@next/eslint-plugin-next": "^14 || ^15 || ^16",
"eslint": "^9",
"eslint-plugin-storybook": "^10",
"prettier": "^3",
"typescript": "^4.9 || ^5"
},
"peerDependenciesMeta": {
"eslint-plugin-storybook": {
"optional": true
},
"@next/eslint-plugin-next": {
"optional": true
}
}
}