-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 KB
/
package.json
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
{
"type": "module",
"scripts": {
"dev": "wrangler dev src/index.ts",
"format": "prettier --write .",
"lint": "eslint ./src",
"deploy": "wrangler deploy --minify src/index.ts",
"db:generate": "drizzle-kit generate",
"db:upgrade": "drizzle-kit up",
"db:studio": "drizzle-kit studio",
"db:migrate": "npx wrangler d1 migrations apply workers-hono-api-example --local",
"db:migrate:prod": "npx wrangler d1 migrations apply workers-hono-api-example --remote"
},
"dependencies": {
"@hono/swagger-ui": "^0.5.0",
"@hono/zod-openapi": "^0.18.3",
"@lucia-auth/adapter-sqlite": "^3.0.2",
"drizzle-orm": "^0.37.0",
"hono": "^4.6.13",
"lucia": "^3.2.2",
"oslo": "^1.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241205.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"better-sqlite3": "^11.6.0",
"drizzle-kit": "^0.29.1",
"eslint": "^8.57.0",
"prettier": "3.4.2",
"wrangler": "^3.93.0"
}
}