-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "@graphile/persisted-operations",
"version": "0.1.1",
"description": "Persisted operations (aka persisted queries) support for PostGraphile's server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepack": "rm -Rf dist && tsc",
"start": "yarn prepack && postgraphile --plugins `pwd`/dist/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/persisted-operations.git"
},
"keywords": [
"persisted",
"operations",
"queries",
"query",
"cache",
"allowlist",
"whitelist",
"graphql",
"PostGraphile",
"Graphile"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/persisted-operations/issues"
},
"homepage": "https://github.com/graphile/persisted-operations#readme",
"peerDependencies": {
"postgraphile": "^4.9.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"jest": "^26.4.2",
"postgraphile": "^4.12.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=12.x"
},
"files": [
"dist"
]
}