-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
56
57
58
59
60
61
62
{
"name": "eslint-plugin-type-graphql",
"version": "1.0.0",
"description": "Linter for TypeGraphQL decorators",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/borremosch/eslint-plugin-type-graphql.git"
},
"scripts": {
"build": "tsc -b tsconfig.json",
"test": "jest --coverage",
"lint": "eslint"
},
"keywords": [
"ESLint",
"TypeGraphQL"
],
"engines": {
"node": "^10.12.0 || >=12.0.0"
},
"author": "Borre Mosch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/borremosch/eslint-plugin-type-graphql/issues"
},
"homepage": "https://github.com/borremosch/eslint-plugin-type-graphql#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^14.11.5",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"class-validator": "^0.13.2",
"eslint": "^8.6.0",
"graphql": "^16.2.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.6",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"type-graphql": "^1.1.1",
"typescript": "^4.5.4",
"validator": "13.7.0"
},
"peerDependencies": {
"@typescript-eslint/parser": "^4.0.0 || ^5.0.0",
"eslint": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": "eslint --cache --fix",
"*.{js,ts,md}": "prettier --write"
}
}