-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.62 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.62 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
48
49
50
{
"name": "hashira",
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@hashira/tsconfig": "workspace:*",
"@types/bun": "^1.3.10",
"@typescript/native-preview": "^7.0.0-dev.20251228.1",
"expect-type": "^1.2.2",
"knip": "^5.64.3",
"lefthook": "^1.13.6",
"typescript": "^5.9.3"
},
"scripts": {
"bump": "bun ./scripts/bunVersion.ts",
"debug": "bun run --cwd apps/bot debug",
"fix": "biome check --write",
"prisma-check-migrations": "bun run --cwd packages/db prisma-check-migrations",
"prisma-generate": "bun run --cwd packages/db prisma generate",
"prisma-migrate-deploy": "bun run --cwd packages/db prisma migrate deploy",
"prisma-migrate-dev": "bun run --cwd packages/db prisma migrate dev",
"prisma-migrate-reset": "bun run --cwd packages/db prisma migrate reset",
"prisma-push": "bun run --cwd packages/db prisma-push",
"prisma-studio": "bun run --cwd packages/db prisma-studio",
"reload-commands": "bun run --cwd apps/bot reload-commands",
"seed": "bun run --cwd apps/bot seed",
"start:prod": "bun prisma-migrate-deploy && bun seed --production && bun run --cwd apps/bot start",
"start": "bun run --cwd apps/bot start",
"typecheck": "bun --workspaces typecheck"
},
"trustedDependencies": [
"@biomejs/biome",
"@prisma/client",
"@prisma/engines",
"lefthook",
"prisma"
],
"type": "module",
"workspaces": [
"tooling/*",
"packages/*",
"apps/*"
],
"dependencies": {
"@hashira/utils": "workspace:*",
"discord.js": "^14.23.2",
"effect": "^3.18.4",
"es-toolkit": "^1.40.0",
"valibot": "^1.0.0"
}
}