-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "@paqtcom/eslint-config",
"version": "0.3.1",
"description": "ESLint and Prettier Config from PAQT",
"keywords": [
"javascript",
"ecmascript",
"eslint",
"lint",
"config",
"prettier"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/paqtcom/eslint-config"
},
"author": {
"name": "PAQT.com",
"url": "https://paqt.com/"
},
"license": "MIT",
"peerDependencies": {
"babel-eslint": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-config-prettier": "*",
"eslint-plugin-html": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-prettier": "*",
"eslint-plugin-react": "*",
"eslint-plugin-react-hooks": "*",
"eslint-plugin-vue": "*",
"prettier": "*"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vue": "^9.7.0",
"prettier": "^2.7.1"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix"
}
}