-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 KB
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
{
"name": "graphile-multi-tenancy-cache",
"version": "0.1.0",
"author": "Constructive <developers@constructive.io>",
"description": "Multi-tenancy cache utilities for PostGraphile — exact-match buildKey handler reuse",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/constructive-io/constructive",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/constructive"
},
"scripts": {
"clean": "makage clean",
"prepack": "npm run build",
"build": "makage build",
"build:dev": "makage build --dev",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"postgraphile",
"graphile",
"multi-tenancy",
"cache",
"buildkey",
"constructive"
],
"bugs": {
"url": "https://github.com/constructive-io/constructive/issues"
},
"dependencies": {
"@pgpmjs/logger": "workspace:^",
"express": "^5.2.1",
"grafserv": "1.0.0",
"graphile-config": "1.0.0",
"pg": "^8.11.3",
"postgraphile": "5.0.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/pg": "^8.10.9",
"makage": "^0.3.0",
"ts-node": "^10.9.2"
}
}