This repository was archived by the owner on Jul 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.88 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.88 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
{
"name": "@asl-19/eslint-config-typescript-react",
"version": "0.5.0",
"description": "Shared ESLint config for ASL19 TypeScript + React projects",
"author": {
"name": "Grant Heaslip",
"email": "[email protected]",
"url": "https://asl19.org/"
},
"license": "GPL-3.0-or-later",
"repository": "ASL-19/eslint-config-typescript-react",
"files": [],
"main": "index.js",
"engines": {
"node": ">= 12"
},
"scripts": {
"build": "tsc",
"eslint": "eslint . --ext js,ts",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@asl-19/eslint-config-typescript": "^0.4.4",
"eslint-config-airbnb-typescript": "^7.2.1"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.0.0-next.10",
"@types/node": "^12.12.42",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sort-destructure-keys": "^1.3.4",
"eslint-plugin-unicorn": "^18.0.1",
"prettier": "^2.0.5",
"typescript": "^3.9.4"
},
"peerDependencies": {
"@emotion/eslint-plugin": "^11.0.0-next.10",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-simple-import-sort": "^5.0.2",
"eslint-plugin-sort-destructure-keys": "^1.3.3",
"eslint-plugin-unicorn": "^18.0.1",
"typescript": "^3.8.3"
}
}