-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.53 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "eslint-config-vinta",
"version": "2.0.0",
"description": "Vinta's ESLint and Prettier Shareable Configs",
"main": "index.js",
"scripts": {
"lint": "eslint --ext js,jsx -c recommended.js",
"lint:fix": "eslint --fix --ext js,jsx -c recommended.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Vinta Software",
"repository": {
"type": "git",
"url": "https://github.com/vintasoftware/eslint-config-vinta.git"
},
"license": "MIT",
"keywords": [
"vinta",
"vintasoftware",
"styleguide",
"guideline",
"prettier",
"eslint",
"eslintconfig",
"config",
"javascript",
"react",
"babel",
"es2015",
"es2016",
"es2017",
"es2018",
"es2019",
"es2020",
"es2021",
"es2022",
"es2023"
],
"dependencies": {
"confusing-browser-globals": "^1.0.11"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.5",
"@babel/eslint-plugin": "^7.22.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^47.0.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@babel/eslint-parser": "^7.22.5",
"@babel/eslint-plugin": "^7.22.5",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^47.0.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"typescript": {
"optional": true
},
"@babel/eslint-parser": {
"optional": true
},
"@babel/eslint-plugin": {
"optional": true
}
}
}