forked from krislefeber/nestjs-dataloader
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.5 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
{
"name": "@applifting-io/nestjs-dataloader",
"version": "1.1.6",
"description": "A NestJS decorator for dataloader",
"license": "MIT",
"repository": "https://github.com/Applifting/nestjs-dataloader",
"author": "Petr Vnenk <petr.vnenk@applifting.cz>",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"prebuild": "rm -rf ./dist",
"prepare": "tsc -p tsconfig.json",
"test": "jest"
},
"keywords": [
"nestjs",
"dataloader",
"graphql"
],
"dependencies": {
"@nestjs/apollo": "^13.1.0",
"dataloader": "^2.2.3",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@nestjs/cli": "^11.0.10",
"@nestjs/common": "^11.1.6",
"@nestjs/core": "^11.1.6",
"@nestjs/graphql": "^13.1.0",
"@nestjs/platform-express": "^11.1.1",
"@nestjs/testing": "^11.1.6",
"@nestjs/typeorm": "^11.0.0",
"@types/jest": "^30.0.0",
"apollo-server": "3.13.0",
"apollo-server-express": "^3.13.0",
"graphql": "^16.11.0",
"jest": "^30.1.3",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"types": "dist/index.d.ts",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverage": true,
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"collectCoverageFrom": [
"index.ts"
]
},
"files": [
"dist"
]
}