-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "eslint-config-markmctamney",
"version": "0.0.1",
"license": "MIT",
"author": "Mark McTamney",
"repository": "https://github.com/markmctamney/eslint-config",
"packageManager": "[email protected]",
"main": "build/default.js",
"source": "src/default.ts",
"types": "build/default.d.ts",
"scripts": {
"tsc": "tsc"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint-config-prettier": "^8.3.0",
"eslint-config-universe": "^7.0.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsonc": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.25.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.11.0",
"eslint-plugin-yaml": "^0.5.0"
},
"peerDependencies": {
"@babel/core": ">=7.9",
"eslint": ">= 7",
"graphql": ">= 15",
"prettier": ">= 2"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"graphql": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^16.11.1",
"eslint": "^7.32.0",
"graphql": "^15.5.1",
"prettier": "^2.3.2",
"typescript": "^4.4.2"
}
}