Files
moreminimore-redesign/templates/marketing/package.json
MoreminiMore 69c4ba6bbe
Some checks failed
PR Sweep / Sweep Open PRs (push) Has been cancelled
CI / Typecheck (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Tests (push) Has been cancelled
CI / Validate Plugins (push) Has been cancelled
CI / Smoke Tests (push) Has been cancelled
CI / Integration Tests (push) Has been cancelled
CI / Browser Tests (push) Has been cancelled
CI / E2E tests (1/8) (push) Has been cancelled
CI / E2E tests (2/8) (push) Has been cancelled
CI / E2E tests (3/8) (push) Has been cancelled
CI / E2E tests (4/8) (push) Has been cancelled
CI / E2E tests (5/8) (push) Has been cancelled
CI / E2E tests (6/8) (push) Has been cancelled
CI / E2E tests (7/8) (push) Has been cancelled
CI / E2E tests (8/8) (push) Has been cancelled
Seed Marketplace Plugins / Seed Plugins (push) Has been cancelled
Format / Format (push) Has been cancelled
Preview Releases / Publish Preview (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
feat: add contact SMTP API, pricing section, and nodemailer
- Replace contact form with AJAX fetch + /api/contact endpoint
- Add nodemailer SMTP integration for email sending
- Add pricing cards section to web-development.astro
- Fix package.json nodemailer catalog entry
2026-04-08 08:30:55 +07:00

32 lines
721 B
JSON

{
"name": "moreminimore",
"version": "1.0.0",
"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": "catalog:",
"@astrojs/react": "catalog:",
"@moreminimore/consent": "file:./plugins/consent",
"astro": "catalog:",
"better-sqlite3": "catalog:",
"emdash": "workspace:*",
"nodemailer": "^6.9.16",
"react": "catalog:",
"react-dom": "catalog:"
},
"devDependencies": {
"@astrojs/check": "catalog:"
}
}