-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 KB
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
45
46
47
{
"name": "discord-bot-js",
"version": "1.0.0",
"description": "Discord bot using Sapphire.js",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"register": "node src/register-commands.js",
"pm2:start": "pm2 start src/pm2/ecosystem.config.js",
"pm2:stop": "pm2 stop discord-bot",
"pm2:restart": "pm2 restart discord-bot",
"pm2:delete": "pm2 delete discord-bot",
"pm2:logs": "pm2 logs discord-bot",
"pm2:status": "pm2 status",
"pm2:monitor": "./src/pm2/monitor.sh",
"pm2:setup": "./src/pm2/setup-startup.sh"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@prisma/client": "^6.10.1",
"@sapphire/framework": "^5.3.6",
"@shineiichijo/marika": "^3.0.1",
"aniwatch": "^2.23.3",
"btch-downloader": "^4.0.15",
"canvas": "^3.1.2",
"cheerio": "^1.1.0",
"discord.js": "^14.14.1",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"mangadex-full-api": "^4.4.0",
"mongodb": "^6.17.0",
"node-fetch": "^2.7.0",
"openweathermap": "^1.0.0",
"pino-pretty": "^13.0.0",
"playwright": "^1.53.1",
"pocketbase": "^0.26.1",
"prisma": "^6.10.1",
"youtube-sr": "^4.3.12"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"engines": {
"node": ">=18.0.0"
}
}