-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "graphql-prisma-info-include",
"version": "1.1.0",
"description": "From your query or mutation's info argument to prisma include or select",
"prepublish": "tsc",
"types": "build/index.d.ts",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tests/src/server.ts tests/generator.ts --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoemieTav/GraphQL-Prisma-Info-Include.git"
},
"keywords": [
"graphql",
"prisma",
"info",
"include"
],
"author": "NoTa",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoemieTav/GraphQL-Prisma-Info-Include/issues"
},
"homepage": "https://github.com/NoemieTav/GraphQL-Prisma-Info-Include#readme",
"peerDependencies": {
"graphql": "0.10.x - 15.x.x"
},
"dependencies": {
"graphql": "^15.0.0",
"typescript": "^3.9.7"
},
"devDependencies": {
"@prisma/cli": "^2.2.2",
"@prisma/client": "^2.2.2",
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.24",
"chai": "^4.2.0",
"graphql-import": "^1.0.2",
"graphql-middleware": "^4.0.2",
"graphql-tag": "^2.10.4",
"mocha": "^8.1.1",
"ts-node": "^8.10.2"
}
}