-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
34 lines (34 loc) · 918 Bytes
/
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": "discord.global-bot",
"type": "module",
"private": true,
"scripts": {
"start": "prisma migrate deploy && NODE_ENV=production bun dist/main.js",
"dev": "bun --bun --watch src/main.ts",
"build": "tsc",
"prettier": "prettier -w .",
"prisma": "prisma migrate dev --name init & prisma generate",
"postinstall": "prisma generate"
},
"dependencies": {
"@discordx/importer": "^1.3.1",
"@elysiajs/cors": "^1.1.1",
"@elysiajs/swagger": "^1.1.6",
"@prisma/client": "6.0.1",
"chart.js": "4.4.7",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"deepl-node": "1.15.0",
"discord.js": "14.16.3",
"discordx": "^11.12.2",
"elysia": "^1.1.26"
},
"devDependencies": {
"@types/node": "22.10.1",
"@types/bun": "1.1.14",
"prettier": "3.4.2",
"prisma": "6.0.1",
"typescript": "5.7.2"
}
}