-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
84 lines (84 loc) · 2.07 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
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
{
"name": "nestjs-graphql-dataloader",
"version": "0.1.28",
"private": false,
"description": "NestJS GraphQL Dataloader",
"license": "MIT",
"repository": "https://github.com/TreeMan360/nestjs-graphql-dataloader",
"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": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/graphql": "^9.0.0",
"graphql": "^15.0.0",
"rxjs": "^7.0.0"
},
"dependencies": {
"dataloader": "^2.0.0"
},
"devDependencies": {
"@apollo/gateway": "^0.38.0",
"@nestjs/cli": "^8.0.0",
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/graphql": "^9.0.0",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@nestjs/typeorm": "^8.0.0",
"@types/express": "4.17.8",
"@types/jest": "^27.0.1",
"@types/node": "^14.11.8",
"@types/supertest": "^2.0.8",
"apollo-server-express": "^3.0.0",
"graphql": "^15.0.0",
"jest": "^27.1.0",
"prettier": "^2.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.0.0",
"sqlite3": "^5.0.0",
"supertest": "^5.0.0",
"ts-jest": "^27.0.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": "^4.4.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": [
"src/index.ts"
]
}
}