File size: 690 Bytes
f81f327
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "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",
    "dotenv": "^16.0.3",
    "express": "^4.18.2",
    "http-proxy-middleware": "^3.0.0-beta.1",
    "pino-http": "^8.3.3",
    "showdown": "^2.1.0"
  },
  "devDependencies": {
    "@types/cors": "^2.8.13",
    "@types/express": "^4.17.17",
    "@types/showdown": "^2.0.0",
    "nodemon": "^2.0.22",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.4"
  }
}