-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.24 KB
/
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
35
36
37
38
39
40
{
"name": "presta-sons",
"private": true,
"scripts": {
"update-dependencies": "npm-check-updates -u && bun install && bun update",
"pregenerate-migration": "rm -f src/db/_migration.sql",
"generate-migration": "drizzle-kit generate --name migration",
"postgenerate-migration": "rm -rf src/db/meta",
"dev": "bun run --watch src/index.ts",
"format": "biome format --write .",
"lint": "biome ci --error-on-warnings .",
"check-types": "tsc",
"check-dead-code": "knip",
"quality": "bun run lint && bun run check-types && bun run check-dead-code && bun test",
"build": "bun build --compile --minify --sourcemap src/index.ts --outfile presta-sons",
"postbuild": "rm -f .*.bun-build"
},
"dependencies": {
"@discordjs/core": "2.0.1",
"@discordjs/rest": "2.4.2",
"@discordjs/ws": "2.0.1",
"@t3-oss/env-core": "0.11.1",
"drizzle-orm": "0.38.4",
"pino": "9.6.0",
"zod": "3.24.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@total-typescript/ts-reset": "0.6.1",
"@types/bun": "1.2.0",
"drizzle-kit": "0.30.2",
"knip": "5.43.3",
"npm-check-updates": "17.1.14",
"pino-pretty": "13.0.0",
"typescript": "5.7.3"
},
"patchedDependencies": {
"discord-api-types@0.37.117": "patches/discord-api-types@0.37.117.patch"
}
}