forked from graphile/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.54 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
{
"name": "graphile-build-pg",
"version": "5.0.0-beta.25",
"description": "PostgreSQL plugins for Graphile Build - build a supercharged GraphQL schema by reflection over a PostgreSQL database and executed by Grafast.",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./pg-introspection": {
"types": "./fwd/pg-introspection/index.d.ts",
"node": "./fwd/pg-introspection/index.js",
"default": "./fwd/pg-introspection/index.js"
}
},
"scripts": {
"test": "jest -i",
"prepack": "tsc -b && cp src/.npmignore dist/.npmignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"graphile",
"graphql",
"engine",
"postgraphile",
"pg",
"postgres",
"postgresql",
"graphqljs",
"plugin",
"build",
"extension",
"graphite"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://graphile.org/graphile-build/",
"dependencies": {
"@types/node": "^20.5.7",
"debug": "^4.3.4",
"graphile-config": "workspace:^",
"jsonwebtoken": "^9.0.2",
"pg-introspection": "workspace:^",
"tslib": "^2.6.2"
},
"peerDependencies": {
"@dataplan/pg": "workspace:^",
"grafast": "workspace:^",
"graphile-build": "workspace:*",
"graphile-config": "workspace:^",
"graphql": "^16.1.0-experimental-stream-defer.6",
"pg": "^8.7.1",
"pg-sql2": "workspace:^",
"tamedevil": "workspace:^"
},
"peerDependenciesMeta": {
"pg": {
"optional": true
}
},
"engines": {
"node": ">=16"
},
"files": [
"dist",
"fwd",
"index.js"
],
"devDependencies": {
"@envelop/core": "^5.0.0",
"@envelop/parser-cache": "^7.0.0",
"@envelop/validation-cache": "^7.0.0",
"@types/debug": "^4.1.8",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/jsonwebtoken": "^9.0.2",
"chalk": "^4.1.2",
"express": "^4.19.2",
"express-graphql": "^0.12.0",
"fastify": "^4.22.1",
"fastify-static": "^4.7.0",
"graphile-export": "workspace:^",
"graphql": "16.1.0-experimental-stream-defer.6",
"graphql-helix": "^1.13.0",
"graphql-ws": "^5.14.0",
"jest": "^29.6.4",
"pg": "^8.11.3",
"ruru": "workspace:^",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"ws": "^8.17.1"
}
}