-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "discord.global-bot",
"type": "module",
"private": true,
"scripts": {
"start": "dotenvx run --env NODE_ENV=production -- node dist/main.js",
"dev": "tsx watch src/main.ts",
"build": "tsup && tsc --emitDeclarationOnly",
"prettier": "prettier -w .",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:introspect": "drizzle-kit introspect"
},
"dependencies": {
"@ai-sdk/google": "3.0.61",
"@discordx/importer": "1.3.3",
"@elysiajs/cors": "1.4.1",
"@elysiajs/node": "1.4.5",
"@elysiajs/openapi": "1.4.14",
"ai": "6.0.158",
"dayjs": "1.11.20",
"deepl-node": "1.26.0",
"discord.js": "14.26.2",
"discordx": "11.13.3",
"drizzle-orm": "0.45.2",
"drizzle-typebox": "0.3.3",
"elysia": "1.4.28",
"lru-cache": "11.3.3",
"posthog-node": "5.29.2",
"postgres": "3.4.9"
},
"devDependencies": {
"@dotenvx/dotenvx": "1.61.0",
"@types/bun": "1.3.12",
"@types/node": "25.6.0",
"drizzle-kit": "0.31.10",
"prettier": "3.8.2",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "6.0.2"
}
}