-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "asena-example",
"module": "src/index.ts",
"scripts": {
"build": "asena build",
"start": "bun out/index.asena.js",
"build:start": "bun run build && bun run start",
"drizzle:generate": "drizzle-kit generate",
"drizzle:migrate": "drizzle-kit push"
},
"dependencies": {
"@asenajs/asena": "^0.3.3",
"@asenajs/asena-drizzle": "^1.0.1",
"@asenajs/asena-logger": "^1.0.0",
"@asenajs/hono-adapter": "^1.1.0",
"drizzle-orm": "^0.44.5"
},
"devDependencies": {
"@asenajs/asena-cli": "0.3.4",
"@hono/zod-validator": "^0.5.0",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"drizzle-kit": "^0.31.5",
"eslint": "^8.57.1",
"eslint-config-alloy": "^5.1.2",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-alloy": "^1.2.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^6.6.0",
"hono": "^4.9.9",
"pg": "^8.16.3",
"prettier": "^3.6.2",
"zod": "^3.25.76"
},
"peerDependencies": {
"typescript": "^5.9.2"
}
}