-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "mappi",
"type": "module",
"version": "0.0.1",
"private": true,
"module": "src/index.ts",
"scripts": {
"dev": "bun run --hot src/index.ts",
"build": "bun build src/index.ts --target node",
"lint": "eslint",
"lint:fix": "eslint --fix",
"db:up": "docker compose up -d",
"db:generate:migration": "bunx drizzle-kit generate",
"db:migrate": "bunx drizzle-kit migrate",
"db:studio": "bunx drizzle-kit studio"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@hono/zod-openapi": "^1.1.4",
"@lrkit/weighted": "^0.3.4",
"@scalar/hono-api-reference": "^0.9.25",
"better-auth": "^1.4.1",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"hono": "^4.10.6",
"hono-pino": "^0.10.3",
"http-status-codes": "^2.3.0",
"pg": "^8.16.3",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"postgres": "^3.4.7"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@types/bun": "^1.3.2",
"@types/pg": "^8.15.6",
"drizzle-kit": "^0.31.7",
"eslint": "^9.38.0",
"eslint-plugin-format": "^1.0.2",
"tsx": "^4.20.6"
}
}