-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "azure-openai-chatgpt-api",
"version": "1.0.1",
"description": "Simple RESTful API of GPT-4/ChatGPT with Azure OpenAI Service for testing and internal use",
"main": "dist/index.js",
"homepage": "https://github.com/jasonfoknxu/azure-openai-chatgpt-api",
"author": "jasonfoknxu <nxu@nxu.biz> (https://nxuweb.net)",
"license": "MIT",
"repository": "github:jasonfoknxu/azure-openai-chatgpt-api",
"scripts": {
"start": "node dist/index.js",
"build": "tsc -p tsconfig.json",
"test": "yarn start test",
"pm2": "pm2 start ecosystem.config.js",
"pm2:bg": "pm2 start ecosystem.config.js --no-daemon",
"pm2:update": "pm2 startOrReload ecosystem.config.js"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.5.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"xss-clean": "^0.1.1"
}
}