-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.18 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
{
"name": "@graphile-contrib/pg-omit-archived",
"version": "3.2.1",
"description": "Makes collections omit archived items by default, but gives the ability to view archived items if explicitly requested.",
"main": "dist/index.js",
"scripts": {
"prepack": "rm -Rf dist && yarn build",
"build": "tsc",
"test": "tsc && jest"
},
"keywords": [
"postgraphile",
"graphile-build",
"graphile-engine",
"archive",
"soft",
"delete",
"hidden"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"dependencies": {
"graphile-utils": "^4.5.6"
},
"peerDependencies": {
"graphile-build-pg": "^4.5.5",
"postgraphile": "^4.5.5"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"graphile-build-pg": "^4.5.5",
"graphql": "14.x",
"jest": "^24.9.0",
"jest-serializer-graphql-schema": "^4.10.0",
"pg": "8.x",
"postgraphile": "^4.5.5",
"prettier": "^2.2.1",
"typescript": "^4.1.5"
},
"files": [
"src",
"dist"
],
"prettier": {
"trailingComma": "all",
"proseWrap": "always"
},
"jest": {
"snapshotSerializers": [
"jest-serializer-graphql-schema"
]
}
}