forked from maticzav/graphql-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.61 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
{
"name": "graphql-middleware-tool",
"description": "GraphQL Middleware done right!",
"version": "0.0.0-semantic-release",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"author": "Luiz Victor Linhares Rocha <[email protected]>",
"dependencies": {
"@graphql-tools/schema": "^7.1.2"
},
"devDependencies": {
"@graphql-tools/delegate": "^7.0.7",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"apollo-server": "^2.19.0",
"axios": "^0.21.0",
"codecov": "^3.8.1",
"graphql": "^14.7.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
},
"scripts": {
"clean": "rimraf dist",
"compile": "tsc -d",
"coverage": "codecov",
"test": "jest",
"prepublishOnly": "npm run compile",
"release": "semantic-release"
},
"files": [
"dist"
],
"release": {
"branch": "master"
},
"homepage": "https://github.com/BigsonLvrocha/graphql-middleware",
"repository": {
"type": "git",
"url": "https://github.com/BigsonLvrocha/graphql-middleware.git"
},
"bugs": {
"url": "https://github.com/BigsonLvrocha/graphql-middleware/issues"
},
"keywords": [
"graphql",
"middleware",
"schema",
"resolvers",
"server",
"prisma"
],
"license": "MIT"
}