-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 969 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 969 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
{
"name": "eptrc",
"scripts": {
"dev": "bun run --hot src/index.ts",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"db:generate": "bunx --bun drizzle-kit generate",
"db:check": "bun run script/check-migrations.ts",
"db:push": "bunx --bun drizzle-kit push",
"build:bun": "bun run script/build.ts bun",
"build:linux-x64": "bun run script/build.ts linux-x64",
"build:windows-x64": "bun run script/build.ts windows-x64",
"build:darwin-x64": "bun run script/build.ts darwin-x64",
"build:darwin-arm64": "bun run script/build.ts darwin-arm64"
},
"dependencies": {
"@hono/zod-validator": "^0.7.6",
"drizzle-orm": "^1.0.0-beta.18-7eb39f0",
"hono": "^4.12.8",
"tronweb": "^6.2.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"drizzle-kit": "^1.0.0-beta.18-7eb39f0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0"
}
}