-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "nexus-plugin-shield",
"version": "0.0.0-development",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/nexus-plugin-shield.esm.js",
"description": "Nexus Shield Plugin",
"author": "Luc Vauvillier <[email protected]>",
"homepage": "https://github.com/lvauvillier/nexus-plugin-shield",
"repository": {
"type": "git",
"url": "https://github.com/lvauvillier/nexus-plugin-shield.git"
},
"bugs": {
"url": "https://github.com/lvauvillier/nexus-plugin-shield/issues"
},
"keywords": [
"graphql",
"nexus",
"permissions",
"shield",
"server",
"authentication",
"authorization",
"rules"
],
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc -d",
"release": "semantic-release"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"graphql-middleware": "^4.0.2",
"graphql-shield": "^7.3.0"
},
"devDependencies": {
"@types/object-hash": "^1.3.1",
"nexus": "^0.25.0",
"semantic-release": "^17.1.1",
"typescript": "^3.8.3"
}
}