-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "eslint-config-acme",
"version": "3.1.0",
"description": "ESLint + Prettier config for React",
"keywords": [
"eslint",
"eslintconfig",
"config",
"javascript",
"prettier"
],
"homepage": "https://github.com/mryechkin/eslint-config-acme#readme",
"bugs": {
"url": "https://github.com/mryechkin/eslint-config-acme/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mryechkin/eslint-config-acme.git"
},
"license": "MIT",
"author": {
"name": "Mykhaylo Ryechkin",
"url": "https://github.com/mryechkin"
},
"exports": {
".": "./src/index.js",
"./prettier": "./.prettierrc.json"
},
"main": "src/index.js",
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
".prettierrc.json",
"src"
],
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --fix"
},
"devDependencies": {
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^2.4.6"
},
"peerDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1",
"eslint": "^8.51",
"eslint-config-airbnb": "^19.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-plugin-import": "^2.28",
"eslint-plugin-jsx-a11y": "^6.7",
"eslint-plugin-react": "^7.33",
"eslint-plugin-react-hooks": "^4.6",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-tailwindcss": "^3.13",
"prettier": "^3",
"prettier-plugin-packagejson": "^2.4",
"prettier-plugin-tailwindcss": "^0.5"
},
"engines": {
"node": ">=15.0.0"
}
}