-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 727 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 727 Bytes
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
{
"name": "gpt2api-node",
"version": "1.0.0",
"description": "OpenAI Codex reverse proxy with admin management system",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"init-db": "node src/scripts/initDatabase.js"
},
"keywords": ["openai", "codex", "proxy", "api", "admin"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"better-sqlite3": "^9.2.2",
"bcrypt": "^5.1.1",
"jsonwebtoken": "^9.0.2",
"express-session": "^1.17.3",
"multer": "^1.4.5-lts.1",
"cookie-parser": "^1.4.6",
"https-proxy-agent": "^7.0.2"
}
}