-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "@gosteelhead/pg-batch-mutate",
"version": "0.0.1",
"description": "Batch mutations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"prepack": "rm -Rf dist tsconfig.tsbuildinfo && tsc",
"watch": "tsc --watch",
"test": "tsc && scripts/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gosteelhead/pg-batch-mutate.git"
},
"author": "Mark Halonen",
"license": "MIT",
"bugs": {
"url": "https://github.com/gosteelhead/pg-batch-mutate/issues"
},
"devDependencies": {
"@dataplan/pg": "^0.0.1-beta.1",
"@tsconfig/node16": "^1.0.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint_d": "^12.2.1",
"grafast": "^0.0.1-beta.1",
"graphile-build-pg": "^5.0.0-beta.1",
"graphql": "16.1.0-experimental-stream-defer.6",
"jest": "^29.3.1",
"jest-serializer-graphql-schema": "^5.0.0-beta.1",
"pg": ">=6.1.0 <9",
"postgraphile": "^5.0.0-beta.1",
"prettier": "2.8.0",
"typescript": "^5.0.0"
},
"jest": {
"testRegex": "__tests__/.*\\.test\\.js$",
"snapshotSerializers": [
"jest-serializer-graphql-schema"
]
},
"files": [
"dist"
],
"engines": {
"node": ">=10"
}
}