website/apps/blog/package.json
lew 79c7aff48b feat: switch to Astro DB for guestbook
- Add @astrojs/db integration
- Define Guestbook schema in db/config.ts
- Add seed data for development
- Update db.ts to use astro:db
- Add guestbook section to homepage with form
- Update env vars to use ASTRO_DB_REMOTE_URL
2026-01-23 04:10:51 +00:00

25 lines
575 B
JSON

{
"name": "@ily/blog",
"type": "module",
"scripts": {
"dev": "astro dev --port 4322",
"build": "astro build",
"preview": "astro preview"
},
"dependencies": {
"@astrojs/db": "^0.19.0",
"@astrojs/vercel": "^9.0.4",
"@auth/core": "^0.37.4",
"astro": "^5.16.13",
"auth-astro": "^4.2.0",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"remark-directive": "^3.0.0",
"remark-gfm": "^4.0.0",
"remark-slug": "^7.0.1",
"remark-smartypants": "^3.0.2",
"unist-util-visit": "^5.1.0"
}
}