This repository has been archived by the owner on Feb 25, 2020. It is now read-only.
forked from grand-stack/graphql-auth-directives
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "graphql-casbin",
"version": "2.0.0",
"description": "Add authorization to your GraphQL API using schema directives.",
"main": "./src/index.js",
"scripts": {
"start": "nodemon ./examples/index.js --exec node -e js",
"start-test-setup": "nodemon ./test/helpers/test-setup.js --exec node -e js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knotel/graphql-casbin.git"
},
"devDependencies": {
"apollo-cache-inmemory": "^1.4.2",
"apollo-client": "^2.4.12",
"apollo-link-http": "^1.5.11",
"apollo-server": "^2.2.5",
"apollo-server-express": "^2.4.8",
"ava": "^0.25.0",
"dotenv": "^6.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"graphql": "^14.2.1",
"husky": "^1.1.2",
"nodemon": "^1.18.7",
"prettier": "^1.13.5"
},
"keywords": [
"GraphQL",
"authorization",
"neo4j"
],
"author": "William Lyon",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/knotel/graphql-casbin/issues"
},
"homepage": "https://github.com/knotel/graphql-casbin#readme",
"dependencies": {
"apollo-errors": "^1.9.0",
"eslint-plugin-standard": "^4.0.0",
"graphql-tools": "^4.0.4",
"jsonwebtoken": "^8.3.0"
},
"peerDependencies": {
"graphql": "~14.x"
}
}