-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
Copy pathpackage.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.82",
"@discordx/importer": "1.3.3",
"@elysiajs/cors": "1.4.2",
"@elysiajs/node": "1.4.5",
"@elysiajs/openapi": "1.4.15",
"ai": "6.0.205",
"dayjs": "1.11.21",
"deepl-node": "1.27.0",
"discord.js": "14.26.4",
"discordx": "11.13.3",
"drizzle-orm": "0.45.2",
"drizzle-typebox": "0.3.3",
"elysia": "1.4.28",
"lru-cache": "11.5.1",
"posthog-node": "5.37.1",
"postgres": "3.4.9"
},
"devDependencies": {
"@dotenvx/dotenvx": "1.71.3",
"@types/bun": "1.3.14",
"@types/node": "25.9.3",
"drizzle-kit": "0.31.10",
"prettier": "3.8.4",
"tsup": "8.5.1",
"tsx": "4.22.4",
"typescript": "6.0.3"
}
}