-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 923 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 923 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
33
34
35
{
"name": "asena-example",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun src/index.ts",
"build": "asena build",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"db:generate": "drizzle-kit generate"
},
"dependencies": {
"@asenajs/asena": "^0.10.1",
"@asenajs/asena-drizzle": "^3.0.0",
"@asenajs/asena-logger": "^2.0.0",
"@asenajs/asena-openapi": "^2.0.0",
"@asenajs/hono-adapter": "^3.1.0",
"drizzle-orm": "^0.45.2",
"hono": "^4.13.3",
"reflect-metadata": "^0.2.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@asenajs/asena-cli": "^0.10.0",
"@types/bun": "^1.3.14",
"drizzle-kit": "^0.31.10",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.9.6",
"typescript": "5.9",
"typescript-eslint": "^8.67.0"
}
}