-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
64 lines (64 loc) · 1.84 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
{
"name": "@graphile/pg-aggregates",
"version": "0.1.1",
"description": "Aggregates support for PostGraphile",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest -i",
"tslint": "prettier --list-different 'src/**/*' && tslint --config tslint.json --project tsconfig.json",
"postgraphile": "nodemon --watch dist -x './postgraphile.sh'",
"dev": "psql -X1v ON_ERROR_STOP=1 -f __tests__/schema.sql graphile_aggregates && 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/pg-aggregates.git"
},
"keywords": [
"postgraphile",
"graphile",
"plugin",
"aggregates",
"pg",
"postgres",
"postgresql",
"graphql"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/pg-aggregates/issues"
},
"homepage": "https://github.com/graphile/pg-aggregates#readme",
"peerDependencies": {
"graphile-build": "^4.12.0-alpha.0",
"graphile-build-pg": "^4.12.0-alpha.0",
"graphql": ">0.6.0 <16"
},
"devDependencies": {
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"concurrently": "^5.3.0",
"graphile-build": "^4.12.0-alpha.0",
"graphile-build-pg": "^4.12.0-alpha.0",
"graphql": ">0.6.0 <16",
"nodemon": "^2.0.7",
"pg": "^8.5.1",
"postgraphile": "^4.12.0-alpha.0",
"postgraphile-plugin-connection-filter": "^2.2.0",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/debug": "^4.1.5",
"@types/graphql": "^14.5.0",
"debug": "^4.3.1",
"graphile-utils": "^4.12.0-alpha.0"
},
"files": [
"dist"
]
}