forked from TreeMan360/nestjs-graphql-dataloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.53 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.53 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@bam.tech/nestjs-graphql-dataloader",
"version": "0.2.1",
"private": false,
"description": "NestJS GraphQL Dataloader",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bamlab/nestjs-graphql-dataloader.git"
},
"author": "Mark Everett",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"prepare": "tsc -p tsconfig.json",
"prestart": "rm -rf ./example/dist",
"start": "nest start example/src/main.ts --watch --path=example/tsconfig.json",
"test": "jest"
},
"keywords": [
"nestjs",
"graphql",
"dataloader"
],
"files": [
"dist"
],
"peerDependencies": {
"@nestjs/common": "^10.4.15",
"@nestjs/core": "^10.4.15",
"@nestjs/graphql": "^12.2.2",
"graphql": "^16.6.0",
"rxjs": "^7.0.0"
},
"dependencies": {
"@apollo/server": "^4.11.3",
"dataloader": "^2.0.0"
},
"devDependencies": {
"@apollo/gateway": "^2.9.3",
"@nestjs/apollo": "^12.2.2",
"@nestjs/cli": "^10.4.9",
"@nestjs/common": "^10.4.15",
"@nestjs/core": "^10.4.15",
"@nestjs/graphql": "^12.2.2",
"@nestjs/platform-express": "^10.4.15",
"@nestjs/schematics": "^10.2.3",
"@nestjs/testing": "^10.4.15",
"@nestjs/typeorm": "^10.0.2",
"@types/express": "4.17.8",
"@types/jest": "^27.0.1",
"@types/node": "^14.11.8",
"@types/supertest": "^2.0.8",
"@types/ws": "^8.5.13",
"apollo-server-express": "^3.0.0",
"graphql": "^16.6.0",
"jest": "^29.7.0",
"prettier": "^2.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.0.0",
"sqlite3": "^5.1.7",
"supertest": "^5.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.2.5",
"ts-morph": "^11.0.3",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typeorm": "^0.2.28",
"typescript": "^5.7.2"
},
"types": "dist/index.d.ts",
"jest": {
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"diagnostics": {
"warnOnly": true
}
}
]
},
"collectCoverage": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"collectCoverageFrom": [
"src/index.ts"
]
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"collectCoverageFrom": [
"src/index.ts"
],
"directories": {
"example": "example"
},
"bugs": {
"url": "https://github.com/bamlab/nestjs-graphql-dataloader/issues"
},
"homepage": "https://github.com/bamlab/nestjs-graphql-dataloader#readme"
}