-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "eslint-config-arkadium",
"version": "4.4.0",
"description": "Airbnb's ESLint config with TypeScript and Prettier support",
"main": "index.js",
"scripts": {
"test": "eslint --ext .tsx,ts test/",
"release": "npm test && standard-version",
"release:dryrun": "standard-version --dry-run"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/arkadiuminc/eslint-config.git"
},
"engines": {
"node": ">=10"
},
"keywords": [
"eslint",
"airbnb",
"typescript",
"prettier"
],
"author": "Arkadium, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/arkadiuminc/eslint-config/issues"
},
"homepage": "https://github.com/arkadiuminc/eslint-config#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "5.54",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-lit-a11y": "^1.0.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0"
},
"peerDependencies": {
"eslint": "^5.16.0 || ^6.8.0 || ^7.2.0",
"prettier": "^1.18.2 || ^2.0.0",
"typescript": "4.9"
},
"devDependencies": {
"@types/react": "16.14.1",
"eslint": "7.14.0",
"prettier": "2.1.2",
"react": "17.0.1",
"standard-version": "^9.5.0",
"typescript": "4.9"
}
}