-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.04 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.04 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
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
{
"name": "@txo/graphql-middleware",
"description": "GraphQL Middleware done right!",
"version": "0.0.0-semantic-release",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": {
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"author": "Matic Zavadlal <matic.zavadlal@gmail.com>",
"dependencies": {
"@graphql-tools/delegate": "^10.0.21",
"@graphql-tools/schema": "^10.0.6"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.7",
"@types/node": "*",
"@apollo/server": "^4.11.0",
"axios": "^1.7.7",
"bob-esbuild": "^4.0.3",
"bob-esbuild-cli": "^4.0.0",
"codecov": "^3.8.3",
"esbuild": "^0.27.0",
"graphql": "^16.10.0",
"husky": "^9.1.6",
"iterall": "^1.3.0",
"jest": "^29.7.0",
"prettier": "^3.7.3",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"resolutions": {
"graphql-tag": "^2.12.6"
},
"scripts": {
"clean": "rimraf dist",
"compile": "bob-esbuild build",
"coverage": "codecov",
"test": "jest",
"prepublishOnly": "npm run compile"
},
"files": [
"dist"
],
"release": {
"branch": "master"
},
"homepage": "https://github.com/technology-studio/graphql-middleware",
"repository": {
"type": "git",
"url": "https://github.com/technology-studio/graphql-middleware.git"
},
"bugs": {
"url": "https://github.com/technology-studio/graphql-middleware/issues"
},
"keywords": [
"graphql",
"middleware",
"schema",
"resolvers",
"server",
"yoga"
],
"license": "MIT"
}