forked from keattang/eks-auth-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 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
{
"name": "eks-auth-proxy",
"version": "1.7.0",
"description": "Authentication proxy for Amazon EKS",
"main": "src/index.js",
"author": "Keat Tang <keat@propelleraero.com.au>",
"license": "MIT",
"scripts": {
"start": "nodemon src/index.js"
},
"dependencies": {
"aws-sdk": "^2.384.0",
"dotenv": "^6.2.0",
"http-proxy": "^1.17.0",
"koa": "^2.6.2",
"koa-better-http-proxy": "^0.2.4",
"koa-bodyparser": "^4.2.1",
"koa-ejs": "^4.2.0",
"koa-helmet": "^4.0.0",
"koa-passport": "^4.1.1",
"koa-router": "^7.4.0",
"koa-session": "^5.10.1",
"lru-cache": "^5.1.1",
"openid-client": "^2.4.5",
"shelljs": "^0.8.3",
"winston": "^3.1.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"nodemon": "^1.18.9",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.2"
}
}