mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 00:01:25 +02:00
- Fix type-check errors (subtask id, duplicate currentLocale) - Add complete Astro landing page with Hero, Features, Pricing, CTA - Add production environment templates (.env.example, .env.production.example) - Add docker-compose.prod.yml for production deployment - Add deploy.sh script for server deployment - Add /health endpoint for web app health checks - Improve docker-entrypoint.sh with database wait logic - Remove references to deleted statistics and session-tasks stores Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
866 B
JSON
34 lines
866 B
JSON
{
|
|
"name": "@todo/landing",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "astro dev --port 4323",
|
|
"start": "astro dev",
|
|
"build": "astro check && astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro",
|
|
"type-check": "astro check",
|
|
"format": "prettier --write .",
|
|
"clean": "rm -rf dist .astro node_modules"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/check": "^0.9.0",
|
|
"@manacore/shared-landing-ui": "workspace:*",
|
|
"astro": "^5.16.0",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/tailwind": "^6.0.2",
|
|
"@tailwindcss/typography": "^0.5.18",
|
|
"@types/node": "^20.0.0",
|
|
"eslint": "^9.0.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-astro": "^1.0.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-astro": "^0.14.1",
|
|
"prettier-plugin-tailwindcss": "^0.6.14",
|
|
"tailwindcss": "^3.4.0"
|
|
}
|
|
}
|