-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.14 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.14 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mq1-web",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"build:workers": "nuxt build --preset=cloudflare-module",
"dev": "cross-env NUXT_HOST=0.0.0.0 NUXT_PORT=3000 nuxt dev",
"d1:migrate:local": "pnpm exec wrangler d1 migrations apply mq1-web-prod --local",
"d1:migrate:remote": "pnpm exec wrangler d1 migrations apply mq1-web-prod --remote",
"d1:import:cockroach": "tsx scripts/migrate-cockroach-to-d1.ts",
"deploy:workers": "pnpm exec wrangler deploy",
"deploy:workers:dry": "pnpm exec wrangler deploy --dry-run",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/icon": "2.1.0",
"@nuxt/image": "2.0.0",
"@nuxt/scripts": "^0.12.2",
"@nuxtjs/critters": "^0.9.0",
"@nuxtjs/robots": "5.5.6",
"@nuxtjs/sitemap": "7.4.7",
"@nuxtjs/tailwindcss": "6.14.0",
"@vite-pwa/nuxt": "^1.1.0",
"@vueuse/core": "^14.1.0",
"@vueuse/nuxt": "14.1.0",
"bcryptjs": "^3.0.3",
"cheerio": "^1.1.2",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.6",
"feed": "^5.2.0",
"highlight.js": "^11.11.1",
"idb": "^8.0.3",
"kiso.css": "^1.2.4",
"microcms-js-sdk": "^3.2.0",
"nuxt": "^4.2.2",
"nuxt-jsonld": "^2.2.1",
"pg": "^8.17.1",
"tsx": "^4.21.0",
"uuid": "^13.0.0",
"vue": "^3.5.27",
"vue-boring-avatars": "^1.4.0",
"vue-router": "^4.6.4"
},
"packageManager": "pnpm@10.9.0+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f",
"pnpm": {
"overrides": {
"c12": "^3.3.2"
}
},
"devDependencies": {
"@iconify-json/line-md": "^1.2.13",
"@iconify-json/lucide": "^1.2.86",
"@iconify-json/material-symbols": "^1.2.52",
"@iconify-json/simple-icons": "^1.2.67",
"@nuxtjs/color-mode": "^4.0.0",
"@types/bcryptjs": "^3.0.0",
"@types/pg": "^8.16.0",
"@types/uuid": "^11.0.0",
"typescript": "^5.9.3",
"vue-tsc": "^3.2.2",
"wrangler": "^4.32.0"
}
}