-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@hydre/auth",
"version": "4.0.2",
"description": "A light graphql authentication server built on RedisGraph",
"type": "module",
"scripts": {
"test": "node --harmony_string_replaceall test/index.test.js",
"coverage": "c8 --check-coverage node --harmony_string_replaceall test/index.test.js",
"lint": "prettier-eslint $PWD/\"**/*.js\" --print-width 80 --list-different && eslint --color .",
"format": "prettier-eslint $PWD/\"**/*.js\" --print-width 80 --write",
"postversion": "git push && git push --tags",
"start": "node --harmony_string_replaceall src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydreio/auth.git"
},
"author": "Hydre",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/hydreio/auth/issues"
},
"keywords": [
"authentication",
"graphql",
"redis",
"auth",
"hydre"
],
"publishConfig": {
"access": "public"
},
"babel": {
"parserOpts": {
"allowAwaitOutsideFunction": true
},
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-private-methods"
]
},
"homepage": "https://github.com/hydreio/auth#readme",
"dependencies": {
"@hydre/graphql-http": "^1.5.0",
"@hydre/rgraph": "^5.0.4",
"@koa/cors": "^3.1.0",
"bcryptjs": "^2.4.3",
"graphql": "^15.4.0",
"graphql-extract": "gist:c16fbe164fb263f2553a0a0f67a11f02",
"graphql-request": "2.0.0",
"ioredis": "^4.19.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^9.4.0",
"ua-parser-js": "^0.7.22",
"uuid": "^8.3.1",
"zeromq": "^6.0.0-beta.6"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.12.1",
"@babel/plugin-proposal-private-methods": "^7.12.1",
"@hydre/doubt": "^7.1.0",
"@sidy/eslint-config-sidy": "^1.4.15",
"babel-eslint": "^11.0.0-beta.2",
"c8": "^7.3.5",
"docker-compose": "^0.23.5",
"eslint": "^7.12.1",
"eslint-plugin-unicorn": "^23.0.0",
"fetch-cookie": "^0.10.1",
"node-fetch": "^2.6.1",
"prettier-eslint-cli": "^5.0.0",
"tap-spec-emoji": "^6.1.2",
"tough-cookie": "^4.0.0"
}
}