mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 04:49:40 +02:00
- Restore from git history (was deleted in 079b55a79)
- Delete NestJS backend and mobile app
- Create Hono/Bun server with preset moods API
- Create local-first store (moods, sequences) with 8 preset moods
- Rewrite web app: Moods page with color gradient cards and activation,
Sequences page with CRUD, auth via shared-auth-ui with guest mode
- Add CLAUDE.md, dev scripts, root CLAUDE.md entry
- 0 type errors on both server and web
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
913 B
JSON
35 lines
913 B
JSON
{
|
|
"name": "@moodlit/landing",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "astro dev --port 4332",
|
|
"start": "astro dev",
|
|
"build": "astro check && astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro",
|
|
"type-check": "astro check",
|
|
"lint": "prettier --check . && eslint .",
|
|
"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"
|
|
}
|
|
}
|