-
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.57 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.57 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",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src --ext .ts",
"db:up": "docker compose up -d db",
"db:down": "docker compose down db",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"deploy:guild": "tsx src/adapters/discord/register-commands.ts guild",
"deploy:global": "tsx src/adapters/discord/register-commands.ts global",
"deploy:clear": "tsx src/adapters/discord/clear-commands.ts"
},
"dependencies": {
"@discordjs/rest": "^2.4.0",
"@opentelemetry/instrumentation": "^0.208.0",
"@opentelemetry/instrumentation-pino": "^0.55.0",
"@types/uuid": "^10.0.0",
"discord-api-types": "^0.37.83",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.27.1",
"drizzle-orm": "^0.36.0",
"pino": "^9.6.0",
"pino-opentelemetry-transport": "^1.0.0",
"pino-pretty": "^13.1.2",
"postgres": "^3.4.5",
"uuid": "^13.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"eslint": "^9.14.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}