-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 803 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 803 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
{
"name": "masakmudah-backend",
"scripts": {
"dev": "bun run --hot src/index.tsx",
"start": "bun run src/index.tsx",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:generate": "prisma generate",
"seed": "prisma db seed",
"db:studio": "prisma studio"
},
"dependencies": {
"@hono/swagger-ui": "^0.4.0",
"@hono/zod-openapi": "^0.15.3",
"@hono/zod-validator": "^0.2.2",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.18.0",
"hono": "^4.5.3",
"nanoid": "^5.0.7",
"oslo": "^1.2.0",
"prisma": "^5.18.0",
"slugify": "^1.6.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bun": "latest",
"tsx": "^4.15.7"
},
"prisma": {
"seed": "tsx ./prisma/seed.ts"
}
}