-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "eks-auth-proxy",
"version": "2.0.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",
"lint": "eslint .",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"dependencies": {
"aws-sdk": "^2.1181.0",
"dotenv": "^16.0.1",
"http-proxy": "^1.18.1",
"koa": "^2.13.4",
"koa-ejs": "^4.3.0",
"koa-helmet": "^6.1.0",
"koa-passport": "^5.0.0",
"koa-router": "^12.0.0",
"koa-session": "^6.2.0",
"lru-cache": "^7.13.1",
"openid-client": "^5.1.8",
"shelljs": "^0.8.5",
"winston": "^3.8.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1"
},
"resolutions": {
"koa-passport/passport": "0.5.3"
}
}