Files
moreminimore-website/package.json
Kunthawat Greethong 226494193d fix: Add engines field to require Node.js 20+ for Astro 5.x compatibility
Astro 5.x requires Node.js >=18.20.8, added engines field to ensure
Nixpacks/Easypanel uses Node.js 20 instead of defaulting to 18.20.5
2026-03-10 13:09:27 +07:00

30 lines
726 B
JSON

{
"name": "moreminimore-redesign",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"build:remote": "ASTRO_DB_REMOTE_URL=file:./data/consent.db astro build --remote",
"preview": "astro preview",
"start": "node dist/server/entry.mjs",
"astro": "astro",
"db:push": "astro db push",
"db:seed": "astro db seed"
},
"dependencies": {
"@astrojs/db": "^0.19.0",
"@astrojs/node": "^9.5.4",
"@tailwindcss/vite": "^4.2.1",
"astro": "^5.17.1",
"astro-consent": "^1.0.17",
"drizzle-orm": "^0.45.1",
"libsql": "^0.5.22",
"serve": "^14.2.5",
"tailwindcss": "^4.2.1"
}
}