-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 968 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 968 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
34
{
"name": "novabot",
"version": "1.0.0",
"description": "Modular Discord bot built with Discord.js, Pino, and Drizzle ORM",
"main": "dist/index.ts",
"scripts": {
"build": "tsc",
"start": "node dist/scripts/start.js",
"sync": "node dist/scripts/deploy-commands.js",
"dev": "tsx watch src/scripts/start.ts",
"dev:sync": "tsx src/scripts/deploy-commands.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"discord.js": "^14.16.3",
"drizzle-orm": "^0.45.2",
"pg": "^8.13.1",
"pino": "^10.3.1",
"pino-pretty": "^13.0.0",
"dotenv": "^17.4.1"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/pg": "^8.11.10",
"drizzle-kit": "^0.31.10",
"tsx": "^4.19.2",
"typescript": "^6.0.2"
}
}