Files
emdash-marketing-template/package.json
Kunthawat Greethong 065d92636a feat: add official EmDash marketing template
- Marketing landing page with hero, features, testimonials, FAQ, pricing
- EmDash CMS with pages collection and marketing blocks
- Full seed data with all content sections
- Dockerfile with entrypoint for database persistence
- Responsive design with CSS variables

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-30 20:58:06 +07:00

38 lines
785 B
JSON

{
"name": "@emdash-cms/template-marketing",
"version": "0.0.3",
"private": true,
"type": "module",
"emdash": {
"seed": "seed/seed.json"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"start": "node ./dist/server/entry.mjs",
"bootstrap": "emdash init && emdash seed",
"seed": "emdash seed",
"typecheck": "astro check"
},
"dependencies": {
"@astrojs/node": "^10.0.0",
"@astrojs/react": "^5.0.0",
"@iconify-json/ph": "^1.2.2",
"astro": "^6.0.1",
"astro-iconset": "^0.0.4",
"better-sqlite3": "^12.8.0",
"emdash": "^0.8.0",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@astrojs/check": "^0.9.7"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}