-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "postgraphile-plugin-many-create-update-delete",
"version": "1.0.7",
"description": "Postgraphile plugin that enables many create, update, & delete mutations in a single transaction.",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tjmoses/postgraphile-plugin-many-create-update-delete.git"
},
"keywords": [
"postgraphile",
"many",
"create",
"mutations",
"many",
"update",
"mutations",
"many",
"delete",
"mutations"
],
"author": "Tim M",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjmoses/postgraphile-plugin-many-create-update-delete/issues"
},
"homepage": "https://github.com/tjmoses/postgraphile-plugin-many-create-update-delete#readme",
"dependencies": {
"postgraphile": "^4.7.0",
"graphile-utils": "^4.5.6"
},
"devDependencies": {
"@types/nanographql": "^2.0.1",
"@types/pg": "^7.14.4",
"@typescript-eslint/parser": "^3.6.0",
"graphile-build": "^4.7.0",
"rimraf": "^3.0.0",
"typescript": "^3.9.6",
"prettier-standard": "^16.4.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "rimraf ./build && npx tsc",
"format": "npx prettier-standard 'src/*.{ts,tsx}'",
"lint": "npx prettier-standard 'src/*.{ts,tsx}' --fix"
}
}