-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 996 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 996 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
35
36
37
38
39
{
"name": "github-discord-webhook",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"build:frontend": "bun run build.ts",
"dev": "bun run build:frontend && bun run index.ts --hot",
"start": "bun run build:frontend && bun run index.ts",
"lint": "biome check . --write",
"typecheck": "tsgo --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20260204.1",
"drizzle-kit": "^0.31.8",
"pino-pretty": "^13.1.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@orpc/client": "^1.13.5",
"@orpc/server": "^1.13.5",
"@orpc/tanstack-query": "^1.13.5",
"@t3-oss/env-core": "^0.13.10",
"@tanstack/react-query": "^5.90.21",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"drizzle-orm": "^0.45.1",
"hono": "^4.11.3",
"pino": "^10.3.0",
"postgres": "^3.4.7",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zod": "^4.2.1"
}
}