-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "trust-backend",
"scripts": {
"dev": "bun run --hot src/index.tsx",
"start": "bun run src/index.tsx",
"generate": "prisma generate",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:studio": "bunx prisma studio",
"db:seed": "prisma db seed",
"lint": "bunx eslint .",
"formatter": "bunx prettier --write ."
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@hono/eslint-config": "^1.0.2",
"@hono/swagger-ui": "^0.4.1",
"@hono/zod-openapi": "^0.16.0",
"@hono/zod-validator": "^0.4.1",
"@prisma/client": "5.19.1",
"@scalar/hono-api-reference": "^0.5.159",
"@types/swagger-ui-express": "^4.1.6",
"deno": "^0.1.1",
"googleapis": "^144.0.0",
"hono": "^4.6.1",
"ioredis": "^5.4.1",
"oslo": "^1.2.1",
"prisma": "^5.19.1",
"redis": "^4.7.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"z": "^1.0.9",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/bun": "latest",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"prettier": "3.3.3",
"tsx": "^4.19.1",
"typescript-eslint": "^8.15.0"
},
"module": "index.ts",
"type": "module",
"peerDependencies": {
"typescript": "^5.7.2"
}
}