forked from hua-bang/chatGPT-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "ts-koa-starter",
"version": "1.0.0",
"description": "一个简单的koa+typescript+typeorm的起手式",
"tags": [
"orm",
"typescript",
"koa"
],
"type": "module",
"scripts": {
"dev": "nodemon",
"start": "ts-node-esm ./src/index.ts",
"build": "tsc",
"pro": "npx pm2 start ecosystem.config.js --env production",
"restart": "pm2 restart ecosystem.config.js --env production",
"stop": "npx pm2 stop ecosystem.config.js"
},
"dependencies": {
"axios": "^1.3.2",
"chatgpt": "^4.2.0",
"dotenv": "^8.2.0",
"execa": "^5.1.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.6",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-router": "^7.0.40",
"@types/node": "^12.0.0",
"nodemon": "^1.19.0",
"pm2": "^3.5.0",
"ts-node": "^8.1.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.4.5"
}
}