-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.71 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
{
"name": "@sapientpro/nestjs-graphql-eager-load",
"version": "0.0.13",
"description": "A powerful tool for optimizing database queries in your NestJS GraphQL App",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Dmyto Kulyk",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/sapientpro/nestjs-graphql-eager-load.git"
},
"bugs": {
"url": "https://github.com/sapientpro/nestjs-graphql-eager-load/issues"
},
"homepage": "https://github.com/sapientpro/nestjs-graphql-eager-load",
"tags": [
"nestjs",
"graphql",
"orm",
"typescript",
"typeorm",
"eager-load"
],
"engines": {
"node": ">= 12.9.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "npm run compile",
"compile": "rimraf ./dist && tsc",
"watch": "./node_modules/.bin/tsc -w",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1"
},
"devDependencies": {
"@types/node": "^18.13.0",
"conventional-changelog-angular": "^5.0.13",
"conventional-changelog-cli": "^2.2.2",
"rimraf": "^5.0.1",
"typeorm": "^0.3.15",
"typescript": "^4.9.5"
},
"dependencies": {
"@graphql-tools/utils": "^10.0.0",
"@nestjs/graphql": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0",
"@sapientpro/typeorm-eager-load": "^0.0.10",
"graphql": "*",
"tslib": "^2.5.0"
},
"peerDependenciesMeta": {
"typeorm": {
"optional": false
}
},
"files": [
"dist"
]
}