-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
54 lines (54 loc) · 1.56 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": "5.0.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.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0"
},
"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": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0"
},
"peerDependencies": {
"eslint": "^7.32.0 || ^8.2.0",
"prettier": "^1.18.2 || ^2.0.0",
"typescript": ">=3.3.1"
},
"devDependencies": {
"@types/react": "17.0.37",
"eslint": "8.4.1",
"prettier": "2.1.2",
"react": "17.0.2",
"standard-version": "9.0.0",
"typescript": "4.5.3"
}
}