-
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) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"scripts": {
"dev": "concurrently pnpm:dev:*",
"dev:uno": "unocss --watch",
"dev:wk": "wrangler dev --live-reload",
"release": "unocss && wrangler deploy --minify",
"d1:list": "wrangler d1 migrations list DB",
"d1:apply": "wrangler d1 migrations apply DB",
"d1:local:list": "wrangler d1 migrations list DB --local",
"d1:local:apply": "wrangler d1 migrations apply DB --local",
"drizzle:generate": "drizzle-kit generate:sqlite"
},
"dependencies": {
"@hono/zod-validator": "^0.1.5",
"@lucia-auth/adapter-sqlite": "^2.0.1",
"@lucia-auth/oauth": "^3.5.1",
"drizzle-orm": "^0.28.2",
"hono": "^3.4.1",
"lucia": "^2.7.6",
"zod": "^3.22.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230628.0",
"@iconify-json/mdi": "^1.1.64",
"@unocss/cli": "^0.58.3",
"@unocss/preset-icons": "^0.58.3",
"@unocss/transformer-variant-group": "^0.58.3",
"concurrently": "^8.2.2",
"daisyui": "^3",
"drizzle-kit": "^0.19.12",
"unocss": "^0.58.3",
"unocss-preset-daisy": "^7.0.0",
"wrangler": "^3.1.2"
}
}