-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.7 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
55
56
57
58
59
60
61
62
{
"name": "@graphile/operation-hooks",
"version": "1.0.0",
"description": "Register asynchronous callbacks before/after operations; uses include: validation, authorization, notification",
"main": "lib/index.js",
"scripts": {
"build": "rm -vrf lib && tsc",
"test": "jest",
"lint": "yarn prettier --check && yarn eslint",
"lint:fix": "yarn eslint --fix; yarn prettier --write",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx,.graphql .",
"prettier": "prettier --ignore-path .eslintignore '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/operation-hooks.git"
},
"keywords": [
"postgraphile",
"graphile",
"graphile",
"engine",
"plugin",
"hooks",
"mutation",
"query",
"subscription",
"postgraphile-plugin"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/operation-hooks/issues"
},
"homepage": "https://github.com/graphile/operation-hooks#readme",
"devDependencies": {
"@types/jest": "^26.0.7",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"@typescript-eslint/typescript-estree": "^3.7.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"graphile-build": "^4.5.0",
"jest": "^26.1.0",
"postgraphile": "^4.4.3",
"prettier": "^2.0.4",
"ts-jest": "^26.1.4",
"typescript": "^3.8.3"
},
"dependencies": {
"graphile-utils": "^4.4.4"
},
"prettier": {
"trailingComma": "es5",
"proseWrap": "always"
},
"files": [
"lib"
]
}