forked from grand-stack/graphql-auth-directives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "graphql-auth-directives",
"version": "2.0.0",
"description": "Add authorization to your GraphQL API using schema directives.",
"main": "./dist/index.js",
"scripts": {
"start": "nodemon ./examples/index.js --exec babel-node -e js",
"start-test-setup": "nodemon ./test/helpers/test-setup.js --exec babel-node -e js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --presets babel-preset-env --out-dir dist",
"precommit": "lint-staged",
"prepublish": "npm run build",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grand-stack/graphql-auth-directives.git"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"apollo-cache-inmemory": "^1.4.2",
"apollo-client": "^2.4.12",
"apollo-link-http": "^1.5.11",
"apollo-server": "^2.2.5",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"dotenv": "^6.2.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"nodemon": "^1.18.7",
"prettier": "^1.13.5"
},
"keywords": [
"GraphQL",
"authorization",
"neo4j"
],
"author": "William Lyon",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/grand-stack/graphql-auth-directives/issues"
},
"homepage": "https://github.com/grand-stack/graphql-auth-directives#readme",
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"apollo-errors": "^1.9.0",
"graphql-tools": "^4.0.4",
"jsonwebtoken": "^8.3.0"
},
"peerDependencies": {
"graphql": "~14.x"
}
}