-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "@eddlondon/eslint-config-react",
"version": "5.0.0",
"description": "This package provides EDD London's ESLint v9 flat config as an extensible shared config.",
"main": "index.js",
"type": "module",
"keywords": [
"eslint",
"eslintconfig",
"config",
"EDD London"
],
"author": {
"name": "EDD London"
},
"license": "ISC",
"scripts": {
"push": "npm version patch && git push",
"publish": "npm publish",
"push-patch": "npm version patch --force && git push",
"push-minor": "npm version minor && git push",
"push-major": "npm version major && git push"
},
"repository": {
"type": "git",
"url": "https://github.com/edd-london/eslint-config-react.git"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"eslint": "^9.36.0",
"prettier": "^3.6.2",
"storybook": "^9.1.7",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
},
"dependencies": {
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^9.1.7",
"eslint-plugin-unicorn": "^61.0.2"
},
"peerDependencies": {
"@eslint/js": "*",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"storybook": ">=8",
"typescript": ">=5"
},
"packageManager": "yarn@4.10.2"
}