-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "@benestudioco/eslint-config-benestudio",
"version": "0.1.6",
"description": "Benestudio specific base linting rules for ESLint",
"main": "index.js",
"scripts": {
"lint": "run-p lint:*",
"lint:js": "eslint . --fix",
"lint:md": "eslint . --ext .md --fix"
},
"repository": {
"type": "git",
"url": "[email protected]:benestudio/eslint-config-benestudio.git"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"javascript",
"styleguide",
"benestudio"
],
"author": "Bene Studio (https://benestudio.co)",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"eslint": "^8.52.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.3"
},
"devDependencies": {
"husky": "^3.0.3",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=10"
}
}