-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "planner",
"module": "server/index.ts",
"type": "module",
"scripts": {
"start": "bun server/index.ts",
"dev": "bun --watch server/index.ts",
"test": "bun test",
"lint": "eslint ./server ./frontend/src",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"check-updates": "bun x npm-check-updates --interactive --format group",
"prepare": "husky || true",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/bun": "latest",
"drizzle-kit": "^0.24.0",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"husky": "^9.1.5",
"typescript-eslint": "^8.3.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@hono/zod-validator": "^0.2.2",
"@kinde-oss/kinde-typescript-sdk": "^2.9.1",
"dayjs": "^1.11.13",
"drizzle-orm": "^0.33.0",
"hono": "^4.5.5",
"postgres": "^3.4.4",
"ts-essentials": "^10.0.2",
"zod": "^3.23.8"
}
}