-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
42
43
44
{
"name": "arkbulletingpt",
"version": "1.0.0",
"main": "app.ts",
"license": "MIT",
"devDependencies": {
"@types/jsdom": "^21.1.1",
"@types/node": "^18.15.11",
"@types/xml2js": "^0.4.14",
"nodemon": "^2.0.22",
"pm2": "^5.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"scripts": {
"dev": "DEBUG=abg:* nodemon app.ts",
"gpt-dev": "DEBUG=abg:* nodemon gpt-debugging.ts",
"start": "tsc --build && NODE_ENV=production pm2 start dist/app.js --name arkbulletingpt",
"stop": "pm2 stop arkbulletingpt && pm2 delete arkbulletingpt",
"clean": "rm -rf dist"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.20.8",
"@types/debug": "^4.1.7",
"@types/koa": "^2.13.6",
"@types/koa-route": "^3.2.5",
"@types/node-schedule": "^2.1.0",
"@types/uuid": "^9.0.1",
"axios": "^1.3.4",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"grammy": "^1.15.3",
"jsdom": "^21.1.1",
"koa": "^2.14.1",
"koa-route": "^3.2.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.42",
"node-schedule": "^2.1.1",
"openai": "^4.42.0",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0",
"xml2js": "^0.6.2"
}
}