-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "nuxt-app",
"private": true,
"type": "module",
"engines": {
"node": "20.5.1"
},
"engineStrict": true,
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "wrangler pages dev dist/",
"postinstall": "nuxt prepare",
"db:generate": "drizzle-kit generate:sqlite",
"db:migrate": "wrangler d1 migrations apply cloudcatcher --local",
"db:migrate:prod": "wrangler d1 migrations apply cloudcatcher",
"wrangler:generate-types": "wrangler types"
},
"dependencies": {
"@iconify-json/mdi": "^1.1.64",
"@libsql/client": "^0.5.1",
"@lucia-auth/adapter-sqlite": "^3.0.1",
"arctic": "^1.2.0",
"aws4fetch": "1.0.13",
"better-sqlite3": "^9.4.3",
"drizzle-orm": "^0.29.4",
"h3": "^1.10.2",
"lucia": "^3.0.1",
"nitropack": "^2.8.1",
"nuxt": "3.10.3",
"pathe": "^1.1.2",
"uuid": "^9.0.1",
"vue": "^3.4.19",
"vue-router": "^4.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240320.1",
"@nuxt/ui": "^2.14.0",
"@nuxtjs/i18n": "^8.1.1",
"@nuxtjs/tailwindcss": "^6.11.4",
"@pinia/nuxt": "^0.5.1",
"@types/uuid": "^9.0.8",
"drizzle-kit": "^0.20.14",
"nitro-cloudflare-dev": "^0.1.4",
"wrangler": "^3.37.0"
}
}