-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.34 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.34 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@hydre/auth",
"version": "1.1.0",
"description": "A light graphql authentication server built on Redis",
"type": "module",
"scripts": {
"test": "NODE_ENV=test node --test test/*.test.js",
"test:coverage": "c8 --reporter=text --reporter=html --reporter=lcov npm test",
"typecheck": "tsc --noEmit",
"lint": "eslint . && prettier . --check",
"format": "prettier . --write && eslint . --fix",
"prepare": "husky",
"dev": "node src/index.js",
"start": "node src/index.js",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydreio/auth.git"
},
"author": "HydreIO Team",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/hydreio/auth/issues"
},
"keywords": [
"authentication",
"graphql",
"redis",
"auth",
"hydre"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.0.0"
},
"homepage": "https://github.com/hydreio/auth#readme",
"dependencies": {
"@hydre/graphql-http": "^1.13.3",
"@koa/cors": "^5.0.0",
"bcryptjs": "^2.4.3",
"falkordb": "^6.4.0",
"graphql": "^16.12.0",
"jose": "^6.1.0",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-router": "^13.1.0",
"pino": "^10.1.0",
"ua-parser-js": "^2.0.3",
"uuid": "^11.0.5",
"zeromq": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"c8": "^10.1.3",
"docker-compose": "^1.3.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"fetch-cookie": "^3.0.1",
"graphql-request": "^7.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"node-fetch": "^3.3.2",
"pino-pretty": "^13.1.2",
"prettier": "^3.6.2",
"tough-cookie": "^5.0.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
},
"c8": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**",
"**/*.test.js",
"src/logger.js"
],
"check-coverage": true,
"lines": 75,
"functions": 70,
"branches": 70,
"statements": 75,
"reporter": [
"text",
"html",
"lcov"
]
}
}