-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
{
"name": "@graphile-contrib/pg-dynamic-attributes",
"version": "0.1.1",
"description": "PostGraphile plugin to fetch, order by and filter by dynamic attributes that are fetched from records in a related table at runtime.",
"main": "dist/index.js",
"scripts": {
"dev": "yarn dev:db && DEBUG=\"*:sql\" concurrently --kill-others \"tsc --watch\" \"nodemon --watch dist -x 'postgraphile --append-plugins postgraphile-plugin-connection-filter,`pwd` -c postgres:///dynamic_attributes -s dynamic_attributes --watch --enhance-graphiql --allow-explain --show-error-stack=json --extended-errors hint,detail,errcode'\"",
"dev:db": "(createdb dynamic_attributes || true) && psql -X1v ON_ERROR_STOP=1 -f __tests__/schema.sql dynamic_attributes",
"prepack": "rm -Rf dist && tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile-contrib/pg-dynamic-attributes.git"
},
"keywords": [
"postgraphile",
"graphile",
"graphile-build",
"eav",
"dynamic",
"attributes",
"properties",
"columns",
"stored"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile-contrib/pg-dynamic-attributes/issues"
},
"homepage": "https://github.com/graphile-contrib/pg-dynamic-attributes#readme",
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"concurrently": "^6.2.0",
"graphile-build-pg": "^4.12.1",
"nodemon": "^2.0.12",
"postgraphile": "^4.12.3",
"postgraphile-plugin-connection-filter": "^2.2.1",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
},
"dependencies": {
"graphile-build": "^4.12.0",
"tslib": "^2.1.0"
},
"files": [
"dist"
]
}