-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 862 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 862 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
{
"name": "nuxthub-starter",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"deploy-cloudflare": "NITRO_PRESET=cloudflare_module npm run build && npx wrangler deploy && npx wrangler d1 migrations apply DB --remote",
"deploy-vercel": "npx vercel deploy",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"typecheck": "nuxt typecheck"
},
"dependencies": {
"@libsql/client": "^0.17.0",
"@nuxt/eslint": "^1.13.0",
"@nuxthub/core": "^0.10.6",
"@upstash/redis": "^1.36.2",
"@vercel/blob": "^2.0.1",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.45.1",
"nuxt": "^4.3.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.13.0",
"eslint": "^9.39.2",
"vue-tsc": "^3.2.4",
"wrangler": "4.62.0"
},
"packageManager": "pnpm@10.28.2"
}