-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
64 lines (64 loc) · 2.1 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
{
"name": "external-auth-server",
"version": "0.1.0",
"description": "easy auth for reverse proxies",
"main": "src/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --nouse-idle-notification --expose-gc --max-old-space-size=8192 src/server.js",
"start-dev": "node --inspect --abort-on-uncaught-exception --nouse-idle-notification --expose-gc --max-old-space-size=8192 src/server.js",
"generate-config-token": "node --nouse-idle-notification --expose-gc --max-old-space-size=8192 bin/generate-config-token-stdin.js"
},
"author": "Travis Glenn Hansen <[email protected]>",
"bugs": {
"url": "https://github.com/travisghansen/external-auth-server/issues"
},
"homepage": "https://github.com/travisghansen/external-auth-server#readme",
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "^1.8.4",
"@grpc/proto-loader": "^0.7.2",
"body-parser": "^1.19.0",
"bunyan": "^1.8.15",
"cache-manager": "^4.1.0",
"cache-manager-fs": "^1.0.8",
"cache-manager-fs-hash": "^1.0.0",
"cache-manager-ioredis": "^2.1.0",
"cache-manager-memcached-store": "^4.0.0",
"cache-manager-mongodb": "^0.3.0",
"cache-manager-redis-store": "^3.0.1",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.5",
"cookie-signature": "^1.0.6",
"express": "^4.17.1",
"express-prom-bundle": "^6.3.4",
"google-proto-files": "^3.0.1",
"handlebars": "^4.7.7",
"htpasswd-js": "^1.0.2",
"jq.node": "^2.4.0",
"jsonata": "^2.0.1",
"jsonpath": "^1.1.0",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"knex": "^2.4.0",
"ldapauth-fork": "^5.0.1",
"lodash": "^4.17.21",
"lru-cache": "^7.4.0",
"mssql": "^9.0.1",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"node-jq": "^2.0.0",
"openid-client": "^5.0.2",
"oracle": "^0.4.1",
"pg": "^8.5.1",
"prom-client": "^14.0.1",
"query-string": "^7.1.3",
"request": "^2.88.2",
"sqlite3": "^5.0.2",
"uri-js": "^4.4.1",
"utils-merge": "^1.0.1",
"uuid": "^9.0.0",
"winston": "^3.3.3",
"yaml": "^2.0.0"
}
}