-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 925 Bytes
/
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
{
"name": "bun-expense-app",
"module": "server/index.ts",
"version": "1.2.0",
"type": "module",
"scripts": {
"start": "bun server/index.ts",
"dev": "bun --watch server/index.ts",
"db:generate": "bun drizzle-kit generate",
"db:migrate": "bun drizzle-kit migrate",
"release": "standard-version",
"prepare": "husky",
"healthcheck": "bun run src/healthcheck.ts"
},
"devDependencies": {
"@types/bun": "latest",
"drizzle-kit": "^0.21.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@hono/zod-validator": "^0.2.1",
"@kinde-oss/kinde-typescript-sdk": "^2.9.0",
"drizzle-orm": "^0.30.10",
"drizzle-zod": "^0.5.1",
"hono": "^4.3.4",
"husky": "^9.0.11",
"postgres": "^3.4.4",
"standard-version": "^9.5.0",
"zod": "^3.23.8"
}
}