-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.55 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
{
"name": "type-graphql-dataloader-nxt",
"description": "A utility to use DataLoader with TypeGraphQL without fuss",
"version": "0.3.8",
"author": {
"name": "Kazuaki Tanida",
"url": "https://github.com/slaypni"
},
"repository": {
"type": "git",
"url": "https://github.com/malisetti/type-graphql-dataloader.git"
},
"keywords": [
"typescript",
"graphql",
"dataloader",
"typeorm"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/slaypni/type-graphql-dataloader/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "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": {
"dataloader": "^2.0.0",
"lodash": "^4.17.20",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.162",
"@types/node": "^14.11.8",
"@types/uuid": "^8.3.0",
"apollo-server-express": "^2.18.2",
"class-validator": "^0.12.2",
"graphql": "^15.3.0",
"graphql-request": "^3.1.0",
"jest": "^26.5.3",
"mikro-orm": "^4.1.1",
"rimraf": "^3.0.2",
"sqlite3": "^5.0.0",
"ts-jest": "^26.4.1",
"ts-node-dev": "^1.0.0-pre.64",
"tsconfig-paths": "^3.9.0",
"type-graphql": "^1.1.0",
"typeorm": "^0.2.28",
"typescript": "^4.0.3"
}
}