-
Notifications
You must be signed in to change notification settings - Fork 935
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 936 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 936 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
28
29
30
31
32
33
{
"name": "titanbot-custom",
"version": "2.0.0",
"description": "Modular Ultimate Community Bot by Touchpoint Support",
"main": "src/app.js",
"type": "module",
"scripts": {
"start": "node src/app.js",
"test": "node --test tests/**/*.test.js",
"migrate": "node scripts/migrate.js apply",
"migrate:check": "node scripts/migrate.js check",
"migrate:status": "node scripts/migrate.js status",
"backup:db": "node scripts/backup.js",
"restore:db": "node scripts/restore.js",
"backup:drill": "node scripts/restore-drill.js"
},
"dependencies": {
"@discordjs/rest": "^2.6.1",
"axios": "^1.13.2",
"discord.js": "^14.15.3",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"node-cron": "^4.2.1",
"pg": "^8.11.3",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.25.76"
},
"devDependencies": {},
"engines": {
"node": ">=18.0.0"
}
}