-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 919 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 919 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
{
"name": "tandem",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --hot src/index.ts",
"seed": "bun run src/workers/seed_gamification_data.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/pg": "^8.15.6",
"drizzle-kit": "^0.31.8",
"tsx": "^4.21.0",
"vitest": "^4.0.15"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@hono/standard-validator": "^0.2.0",
"@hono/zod-validator": "^0.7.5",
"@scalar/hono-api-reference": "^0.9.26",
"better-auth": "^1.4.5",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.0",
"hono": "^4.10.7",
"hono-openapi": "^1.1.2",
"http-status-codes": "^2.3.0",
"moment": "^2.30.1",
"pg": "^8.16.3",
"quansync": "^1.0.0",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"zod": "^4.1.13"
}
}