-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.87 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
{
"name": "@fontoxml/eslint-config",
"version": "4.1.1",
"license": "MIT",
"author": "Fonto",
"description": "Fonto's opiniated ESLint base configuration.",
"keywords": [
"eslint",
"config",
"fonto",
"fontoxml"
],
"repository": {
"type": "git",
"url": "https://github.com/FontoXML/eslint-config-fontoxml.git"
},
"files": [
"rules",
"base.js",
"index.js",
"node.js",
"prettier.js",
"react.js",
"typeinfo.js",
"typescript.js"
],
"scripts": {
"lint": "eslint . --fix",
"test": "ESLINT_CONFIG_PRETTIER_NO_DEPRECATED=true eslint-find-rules --unused --deprecated --no-error ./test.js"
},
"main": "index.js",
"dependencies": {
"@babel/core": "7.14.6",
"@babel/eslint-parser": "7.14.7",
"@babel/plugin-syntax-jsx": "7.14.5",
"@typescript-eslint/parser": "4.28.0"
},
"devDependencies": {
"@babel/eslint-plugin": "7.14.5",
"@typescript-eslint/eslint-plugin": "4.28.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-find-rules": "4.1.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"prettier": "2.3.2",
"typescript": "4.3.4"
},
"peerDependencies": {
"@babel/eslint-plugin": "7.14.5",
"@typescript-eslint/eslint-plugin": "4.28.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"prettier": "2.3.2",
"typescript": "4.3.4"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
},
"typescript": {
"optional": true
}
}
}