forked from graphile/graphile-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "postgraphile-core",
"version": "4.12.1",
"description": "",
"main": "node8plus/index.js",
"scripts": {
"test": "scripts/test",
"prepack": "mkdir -p node8plus && tsc",
"watch": "mkdir -p node8plus && tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/graphile-engine.git"
},
"author": "Benjie Gillam <[email protected]>",
"homepage": "https://github.com/graphile/graphile-engine/tree/master/packages/postgraphile-core",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/graphile-engine/issues"
},
"dependencies": {
"graphile-build": "4.12.0",
"graphile-build-pg": "4.12.1",
"tslib": "^2.0.1"
},
"devDependencies": {
"@types/node": "^14.6.4",
"@types/pg": ">=6 <9",
"debug": "^4.1.1",
"jest": "25.x",
"jest-serializer-graphql-schema": "4.10.0",
"jest-silent-reporter": "^0.2.1",
"jsonwebtoken": "^8.5.1",
"pg-connection-string": "^2.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"graphql": ">=0.9 <0.14 || ^14.0.2 || ^15.4.0",
"pg": ">=6.1.0 <9"
},
"files": [
"node8plus",
"index.js"
],
"engines": {
"node": ">=8.6"
}
}