-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "eslint-config-airbnb-typescript-prettier",
"version": "4.2.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://[email protected]/toshi-toma/eslint-config-airbnb-typescript-prettier.git"
},
"engines": {
"node": ">=10"
},
"keywords": [
"eslint",
"airbnb",
"typescript",
"prettier"
],
"author": "toshi-toma",
"license": "MIT",
"bugs": {
"url": "https://github.com/toshi-toma/eslint-config-airbnb-typescript-prettier/issues"
},
"homepage": "https://github.com/toshi-toma/eslint-config-airbnb-typescript-prettier#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"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-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": ">=3.3.1"
},
"devDependencies": {
"@types/react": "16.14.1",
"eslint": "7.14.0",
"prettier": "2.1.2",
"react": "17.0.1",
"standard-version": "9.0.0",
"typescript": "4.2.3"
}
}