oai-reverse-proxy/package.json

30 lines
712 B
JSON
Raw Normal View History

2023-04-08 01:34:21 -06:00
{
"name": "oai-reverse-proxy",
"version": "1.0.0",
"description": "Reverse proxy for the OpenAI API",
"scripts": {
"build": "tsc",
"start:dev": "nodemon --watch src --exec ts-node src/server.ts",
"start": "node build/server.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
2023-04-08 05:02:59 -06:00
"dotenv": "^16.0.3",
2023-04-08 01:34:21 -06:00
"express": "^4.18.2",
2023-04-08 07:24:07 -06:00
"http-proxy-middleware": "^3.0.0-beta.1",
2023-04-08 07:50:03 -06:00
"pino-http": "^8.3.3",
"showdown": "^2.1.0",
"zlib": "^1.0.5"
2023-04-08 01:34:21 -06:00
},
"devDependencies": {
2023-04-08 01:59:43 -06:00
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
2023-04-08 07:50:03 -06:00
"@types/showdown": "^2.0.0",
2023-04-08 01:34:21 -06:00
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}