-
-
Notifications
You must be signed in to change notification settings - Fork 300
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "@golevelup/nestjs-graphql-request",
"version": "5.0.0",
"description": "Badass utilities for integrating graphql-request and NestJS",
"author": "Jesse Carter <jesse.r.carter@gmail.com>",
"homepage": "https://github.com/golevelup/nestjs#readme",
"license": "MIT",
"keywords": [
"NestJS",
"graphql-request",
"sdk",
"codegen",
"graphql",
"gql"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/golevelup/nestjs.git"
},
"scripts": {
"copy-readme": "cp ../../docs/graphql-request.md ./README.md",
"build": "tsc --build tsconfig.build.json",
"build:watch": "tsc --build tsconfig.build.json --watch",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"bugs": {
"url": "https://github.com/golevelup/nestjs/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"graphql": "^16.13.1",
"graphql-request": "^7.4.0"
}
}