-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.76 KB
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
{
"name": "@paniclobster/eslint-config-react",
"version": "1.0.2",
"description": "ESLint config package",
"keywords": [
"config",
"eslint",
"paniclobster"
],
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://gitlab.com/paniclobster/workspace.git"
},
"bugs": {
"url": "https://gitlab.com/paniclobster/workspace/-/issues"
},
"author": {
"name": "Rodrigo Scomação do Nascimento",
"email": "rodrigo.sc.na@gmail.com",
"url": "https://github.com/rodrigoscna"
},
"main": "src/index.js",
"files": [
"src"
],
"dependencies": {
"@paniclobster/eslint-config-base": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.1.7",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"eslint": "^8.40.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"eslint": "^8.40.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependenciesMeta": {
"@rushstack/eslint-patch": {
"optional": false
},
"eslint": {
"optional": false
},
"react": {
"optional": false
},
"react-dom": {
"optional": false
}
},
"scripts": {
"lint": "eslint --max-warnings=0 ./**/*.{js,jsx,ts,tsx}"
}
}