-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "apikey-auth-proxy",
"version": "0.1.0",
"description": "Authentication proxy with API Key support",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"dev": "concurrently -k --default-input-target=1 \"pnpm build:watch\" \"nodemon dist/index.js\"",
"start": "node .",
"build": "rimraf ./dist && rollup --config rollup.config.ts --configPlugin typescript",
"build:watch": "rollup --config rollup.config.ts --configPlugin typescript -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"authentication-proxy",
"api-auth",
"proxy",
"api-key-auth"
],
"author": {
"email": "[email protected]",
"name": "Mayur Deshmukh"
},
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^20.1.1",
"@types/nodemon": "^1.19.2",
"concurrently": "^8.0.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"rollup": "^3.21.5",
"supertest": "^6.3.3",
"typescript": "^5.0.4"
},
"dependencies": {
"base62-token": "^1.1.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"mongodb": "^5.4.0",
"mongoose": "^7.1.0",
"nanoid": "^4.0.2",
"pino": "^8.14.1",
"pino-http": "^8.3.3",
"yaml": "^2.3.0"
}
}