forked from slaypni/type-graphql-dataloader
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.69 KB
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
63
{
"name": "type-graphql-dataloader",
"description": "A utility to use DataLoader with TypeGraphQL without fuss",
"version": "0.5.5",
"author": {
"name": "Pavel Voronov",
"url": "https://github.com/voronp"
},
"repository": {
"type": "git",
"url": "https://github.com/voronp/type-graphql-dataloader.git"
},
"keywords": [
"typescript",
"graphql",
"dataloader",
"typeorm"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/voronp/type-graphql-dataloader/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepack": "yarn install && tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"dev:typeorm": "ts-node-dev -r tsconfig-paths/register examples/typeorm/index.ts",
"test": "jest",
"prepublishOnly": "npm run-script clean && npm run-script build"
},
"dependencies": {
"@types/validator": "^13.7.17",
"dataloader": "^2.1.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0",
"typeorm": "0.3.17",
"uuid": "^9.0.0"
},
"devDependencies": {
"@apollo/server": "^4.4.1",
"@types/express": "^4.17.17",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.162",
"@types/node": "^16.11.6",
"@types/uuid": "^9.0.0",
"class-validator": "^0.13.1",
"express": "^4.17.1",
"graphql": "^16.6.0",
"graphql-request": "^3.6.1",
"graphql-scalars": "^1.23.0",
"jest": "^26.5.3",
"rimraf": "^3.0.2",
"sqlite3": "^5.0.2",
"ts-jest": "^26.4.1",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"type-graphql": "^2.0.0-rc.2",
"typescript": "~5.0.0"
}
}