This repository has been archived by the owner on Nov 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
106 lines (106 loc) · 2.65 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@mando75/typeorm-graphql-loader",
"version": "1.7.5",
"description": "A dataloader which intelligently selects/joins the fields/relations from your TypeORM entities needed to resolve a GraphQL query",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "pnpm lint && rimraf -rf dist",
"build": "tsc --declaration",
"publish:docs": "typedoc --options typedoc.json",
"lint": "eslint \"./src/**/*.ts\"",
"lint:fix": "pnpm lint --fix",
"test": "nyc mocha -r ts-node/register -r tslib -r source-map-support/register --full-trace src/__tests__/**/*.test.ts --timeout 5000"
},
"files": [
"dist/*",
"yarn.lock",
".gitignore",
"!/dist/__tests__"
],
"repository": {
"type": "git",
"url": "https://gitlab.com/Mando75/typeorm-graphql-loader"
},
"keywords": [
"typeorm",
"database",
"graphql",
"data",
"apollo",
"typegraphql",
"loader",
"batching",
"caching",
"resolvers",
"dataloader"
],
"author": "Bryan Muller",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/Mando75/typeorm-graphql-loader/issues"
},
"homepage": "https://gql-loader.bmuller.net",
"dependencies": {
"graphql-parse-resolve-info": "^4.12.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-spies": "^1.0.3",
"@types/chance": "^1.1.3",
"@types/deep-equal": "^1.0.1",
"@types/faker": "^5.5.9",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@types/object-path": "^0.11.1",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.4",
"chai-spies": "^1.0.0",
"chai-things": "^0.2.0",
"chance": "^1.1.8",
"class-validator": "^0.13.2",
"deep-equal-in-any-order": "^1.1.15",
"eslint": "^8.6.0",
"eslint-plugin-prettier": "^4.0.0",
"faker": "^5.5.3",
"graphql": "^15.8.0",
"mocha": "^9.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "15.1.0",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"sqlite3": "^5.0.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"type-graphql": "^1.1.1",
"typedoc": "^0.22.10",
"typeorm": "^0.2.41",
"typescript": "^4.5.4"
},
"peerDependencies": {
"graphql": ">=15.0.0",
"typeorm": ">=0.2.8"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"tslib"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": true,
"instrument": true
}
}