-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
{
"name": "eslint-config-getstarted",
"version": "1.1.2",
"description": "Automatically setup the best and future-proofed linting and formatting config for your project with or without VS Code.",
"keywords": [
"javascript",
"ecmascript",
"eslint",
"lint",
"format",
"eslint-config-getstarted",
"getstarted",
"lint-format",
"config",
"prettier",
"eslint-config-airbnb",
"babel-eslint",
"eslint-config-prettier",
"eslint-plugin-html",
"eslint-plugin-import",
"eslint-plugin-jsx-a11y",
"eslint-config-wesbos",
"eslint-plugin-prettier",
"eslint-plugin-react",
"eslint-plugin-react-hooks"
],
"main": "index.js",
"repository": "[email protected]:vivekrp/eslint-config-getstarted.git",
"author": "Vivek Rp <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.18.3",
"npm": ">=6.14.8"
},
"peerDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-html": "^6.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"prettier": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-html": "^6.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"prettier": "^2.1.1"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix"
}
}