-
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.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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": "orcta-lite",
"version": "0.1.0",
"license": "Polyform-Noncommercial-1.0.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsup src/index.ts --format esm --dts",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"test": "vitest run",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"new:module": "./scripts/new-module.sh",
"http": "./scripts/http-run.sh"
},
"dependencies": {
"@hono/node-server": "^1.19.7",
"@hono/zod-validator": "^0.7.6",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.44.7",
"hono": "^4.11.3",
"pg": "^8.16.3",
"pino": "^9.14.0",
"pino-http": "^10.0.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@types/node": "^22.19.3",
"@types/pg": "^8.16.0",
"drizzle-kit": "^0.31.8",
"tsup": "^8.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=20.0.0"
}
}