-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 985 Bytes
/
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
{
"name": "eslint-config-unosquare",
"version": "0.20.0",
"description": "Eslint config for Unosquare",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unosquare/eslint-config-unosquare.git"
},
"license": "MIT",
"author": "Unosquare",
"private": false,
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^3.2.0"
},
"peerDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.0.0"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"endOfLine": "auto",
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 120,
"tabWidth": 4
}
}