-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"version": "1.0.0",
"name": "zest-backend",
"description": "A backend for a social media app with features similar to Reddit, Instagram, Twitter, and more.",
"main": "src/index.js",
"author": {
"name": "xarcgit"
},
"scripts": {
"dev": "bun run --hot ./src/index.ts",
"db:generate": "bun drizzle-kit generate",
"db:migrate": "bun drizzle-kit migrate",
"db:push": "bun drizzle-kit push",
"db:pull": "bun drizzle-kit pull",
"db:check": "bun drizzle-kit check",
"db:up": "bun drizzle-kit up",
"db:studio": "bun drizzle-kit studio",
"lint": "lint-staged"
},
"dependencies": {
"@hono/sentry": "^1.2.0",
"@hono/swagger-ui": "^0.4.1",
"@hono/zod-validator": "^0.4.1",
"@kinde-oss/kinde-typescript-sdk": "^2.9.1",
"@neondatabase/serverless": "^0.10.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.35.1",
"drizzle-zod": "^0.5.1",
"hono": "^4.6.5",
"nanoid": "^5.0.7",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"zod": "^3.23.8",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/bun": "latest",
"drizzle-kit": "^0.26.2",
"lint-staged": "^15.2.10"
},
"lint-staged": {
"*.{ts,js}": "bunx biome check --apply-unsafe ./src",
"**/*": "bunx biome format ./src --write --files-ignore-unknown=true"
}
}