-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.91 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
{
"name": "@dantehemerson/nestjs-dataloader",
"version": "1.0.1-alpha.0",
"description": "A NestJS decorator for dataloader",
"license": "MIT",
"repository": "https://github.com/dantehemerson/nestjs-dataloader",
"author": "Dante Calderon <dantehemerson@gmail.com>",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"prebuild": "rm -rf ./dist",
"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",
"dataloader",
"graphql"
],
"peerDependencies": {
"@nestjs/common": "^8.4.7",
"@nestjs/core": "^8.4.7",
"@nestjs/graphql": "^7.11.0"
},
"dependencies": {
"dataloader": "^2.0.0"
},
"devDependencies": {
"@nestjs/apollo": "^10.0.17",
"@nestjs/cli": "^9.0.0",
"@nestjs/common": "^9.0.3",
"@nestjs/core": "^9.0.3",
"@nestjs/graphql": "^10.0.12",
"@nestjs/platform-express": "^9.0.3",
"@nestjs/testing": "^9.0.3",
"@nestjs/typeorm": "^8.1.4",
"@types/jest": "^27.5.1",
"apollo-server-express": "^3.9.0",
"apollo-server-testing": "^2.25.3",
"graphql": "^16.5.0",
"jest": "^28.1.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"sqlite3": "^5.0.9",
"ts-jest": "^28.0.2",
"ts-morph": "^14.0.0",
"typeorm": "^0.2.45",
"typeorm-factory": "^0.0.14",
"typescript": "^4.7.4"
},
"types": "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"
]
}