-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "typegraphql-authchecker",
"version": "0.2.0-beta.1",
"description": "Custom authcheckers for TypeGraphql made simple.",
"author": "Utkarsh Goel",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/utkarsh867/typegraphql-authchecker"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^29.5.7",
"@types/node": "^16.6.2",
"class-validator": "^0.14.0",
"graphql": "^16.8.1",
"graphql-scalars": "^1.22.4",
"jest": "^29.7.0",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"type-graphql": "^2.0.0-beta.3"
},
"scripts": {
"build": "tsc",
"test": "jest"
},
"peerDependencies": {
"class-validator": ">=0.14.0",
"graphql": "^16.8.1",
"graphql-scalars": "^1.22.4"
}
}