-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "@bestdoctor/eslint-config",
"version": "0.7.8",
"description": "BestDoctor ESLint config",
"main": "index.js",
"author": "NMVikings",
"license": "ISC",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tsdoc": "^0.2.17"
},
"devDependencies": {
"@types/eslint": "^8.4.10",
"@types/jest": "^29.4.0",
"eslint": "^8.32.0",
"jest": "^29.4.0",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.6.2"
},
"peerDependencies": {
"eslint": ">=7.0.0",
"prettier": ">=2.0.0",
"typescript": ">=4.0.0"
},
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"makecheck": "yarn typecheck && yarn test",
"format": "prettier --write 'rules/**/*' '__tests__/**/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/best-doctor/eslint-config-bestdoctor.git"
},
"keywords": [
"eslint"
],
"bugs": {
"url": "https://github.com/best-doctor/eslint-config-bestdoctor/issues"
},
"homepage": "https://github.com/best-doctor/eslint-config-bestdoctor#readme"
}