forked from graphile/graphile-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.71 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": "graphile-build-pg",
"version": "4.12.1",
"description": "Build a GraphQL schema by reflection over a PostgreSQL schema. Easy to customize since it's built with plugins on graphile-build",
"main": "node8plus/index.js",
"types": "node8plus/index.d.ts",
"scripts": {
"test": "jest",
"prepack": "mkdir -p node8plus && babel --root-mode upward --copy-files -s true --out-dir node8plus src && flow-copy-source src node8plus",
"watch": "mkdir -p node8plus && babel --root-mode upward --copy-files -s true --watch --out-dir node8plus src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/graphile-engine.git"
},
"keywords": [
"graphile",
"graphql",
"engine",
"pg",
"postgres",
"postgresql",
"gql",
"generate",
"reflection",
"build",
"schema",
"apollo",
"relay",
"plugins",
"extensible"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/graphile-engine/issues"
},
"homepage": "https://github.com/graphile/graphile-engine/tree/master/packages/graphile-build-pg",
"dependencies": {
"@graphile/lru": "4.11.0",
"chalk": "^2.4.2",
"debug": "^4.1.1",
"graphile-build": "4.12.0",
"jsonwebtoken": "^8.5.1",
"lodash": ">=4 <5",
"lru-cache": ">=4 <5",
"pg-sql2": "4.12.1"
},
"peerDependencies": {
"pg": ">=6.1.0 <9"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"eslint_d": "^9.1.2",
"flow-copy-source": "^2.0.9",
"jest": "25.x",
"jest-serializer-graphql-schema": "4.10.0"
},
"files": [
"node8plus",
"res",
"index.js"
],
"engines": {
"node": ">=8.6"
}
}