-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "@strv/nestjs-dataloader",
"description": "Nest.js decorator for injecting GraphQL Dataloader instances into your resolvers",
"author": {
"name": "Robert Rossmann",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strvcom/nestjs-dataloader.git"
},
"homepage": "https://github.com/strvcom/nestjs-dataloader",
"version": "0.2.0",
"license": "BSD-3-Clause",
"type": "module",
"exports": {
".": "./src/index.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"prepare": "touch node_modules && make"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nest",
"nestjs",
"dataloader",
"graphql",
"apollo"
],
"dependencies": {
"dataloader": "^2.2.2",
"tslib": "^2.6.3"
},
"peerDependencies": {
"@nestjs/common": "^10.3.5",
"@nestjs/core": "^10.3.5",
"@nestjs/graphql": "^12.1.1"
},
"devDependencies": {
"@nestjs/platform-express": "^10.3.10",
"@nestjs/testing": "^10.3.10",
"@strv/eslint-config-node": "^5.0.0-alpha.1",
"@strv/eslint-config-typescript": "^6.0.0-alpha.2",
"@types/express": "^4.17.21",
"@types/node": "^20.14.10",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^2.0.1",
"eslint": "^9.19.0",
"supertest": "^7.0.0",
"typescript": "^5.5.2",
"vitest": "^2.0.1"
}
}