-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.91 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
66
67
68
69
70
71
72
73
74
75
{
"name": "@chipzhang/eslint-config",
"version": "0.1.2",
"description": "An ESLint shareable config based on Airbnb, added JSON / Babel / TypeScript / Prettier support",
"keywords": [
"styleguide",
"eslint",
"eslint-config",
"airbnb",
"babel",
"typescript",
"prettier",
"react"
],
"homepage": "https://github.com/chipzhang/eslint-config#readme",
"repository": {
"type": "git",
"url": "https://github.com/chipzhang/eslint-config"
},
"bugs": {
"url": "https://github.com/chipzhang/eslint-config/issues"
},
"author": "Chip Zhang <[email protected]> (https://github.com/chipzhang)",
"license": "AGPL-3.0-only",
"engines": {
"node": ">=12.0.0"
},
"main": "index.js",
"files": [
"lib",
"*.js",
"!.*.js"
],
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"prettier": "prettier --write ."
},
"dependencies": {
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.3",
"eslint-plugin-json": "3.0.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"find-root": "^1.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "7.11.0",
"@babel/eslint-parser": "7.11.0",
"@babel/eslint-plugin": "7.11.0",
"@chipzhang/prettier-config": "^0.1.2",
"@chipzhang/tsconfig": "^0.1.6",
"@typescript-eslint/eslint-plugin": "4.4.1",
"@typescript-eslint/parser": "4.4.1",
"eslint": "7.5.0",
"js-beautify": "^1.13.13",
"prettier": "2.3.0",
"typescript": "4.2.4"
},
"peerDependencies": {
"@babel/core": "^7.11.0",
"@babel/eslint-parser": "^7.11.0",
"@babel/eslint-plugin": "^7.11.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.5.0",
"typescript": "4.2.4"
}
}