-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 2 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
{
"name": "@graphile/postgis",
"version": "0.2.0",
"description": "PostGIS support for PostGraphile",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "scripts/test",
"lint": "prettier --list-different 'src/**/*' && tslint --config tslint.json --project tsconfig.json",
"postgraphile": "nodemon --watch dist -x 'postgraphile --append-plugins `pwd`/dist/index.js -c graphile_test -s graphile_postgis -p 5123 --enhance-graphiql --watch --dynamic-json --show-error-stack --extended-errors severity,code,detail,hint,position,internalPosition,internalQuery,where,schema,table,column,dataType,constraint,file,line,routine'",
"dev": "psql -f __tests__/schema.sql graphile_test && concurrently --kill-others 'npm run watch' 'npm run postgraphile'",
"prepack": "rm -Rf dist && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/postgis.git"
},
"keywords": [
"postgraphile",
"graphile",
"plugin",
"postgis",
"gis",
"postgresql",
"graphql"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/postgis/issues"
},
"homepage": "https://github.com/graphile/postgis#readme",
"peerDependencies": {
"graphile-build": "^4.4.0",
"graphile-build-pg": "^4.4.0",
"graphql": ">=0.6 <16",
"pg-sql2": ">=2.2.1 <5"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.22",
"concurrently": "^6.0.2",
"graphql": "^15",
"jest": "^26.6.3",
"nodemon": "^1.19.1",
"postgraphile": "^4.9.0",
"postgraphile-core": "^4.9.0",
"prettier": "1.18.2",
"ts-jest": "^26.5.4",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"debug": "^4.1.1",
"jest-serializer-graphql-schema": "^5.0.0-1.1",
"tslib": "^1.10.0"
},
"resolutions": {
"graphql": "^15"
},
"files": [
"dist"
]
}