mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 07:26:42 +02:00
Structure: apps/memoro/apps/web, package name @memoro/web Web tooling: adapter-node, Tailwind v4 + @manacore/shared-tailwind, Vite v6, shared PWA/vite-config Auth: createManaAuthStore() from @manacore/shared-auth-stores, removed Google/Apple OAuth Local-first: memoroStore with 7 collections + guest seed data (memos, tags, spaces, etc.) Service layer: memoService + tagService migrated from Supabase direct to local-store collections Workspace: dev:memoro:* scripts in root package.json, memoro added to CLAUDE.md Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
59 lines
1.9 KiB
JSON
59 lines
1.9 KiB
JSON
{
|
|
"name": "@memoro/web",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"prepare": "svelte-kit sync || echo ''",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"type-check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"devDependencies": {
|
|
"@manacore/shared-pwa": "workspace:*",
|
|
"@manacore/shared-vite-config": "workspace:*",
|
|
"@sveltejs/adapter-node": "^5.0.0",
|
|
"@sveltejs/kit": "^2.47.1",
|
|
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
|
"@tailwindcss/vite": "^4.1.7",
|
|
"@types/node": "^20.0.0",
|
|
"@vite-pwa/sveltekit": "^1.1.0",
|
|
"svelte": "^5.41.0",
|
|
"svelte-check": "^4.3.3",
|
|
"tailwindcss": "^4.1.7",
|
|
"tslib": "^2.4.1",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^6.0.0",
|
|
"vitest": "^4.1.0"
|
|
},
|
|
"dependencies": {
|
|
"@manacore/local-store": "workspace:*",
|
|
"@manacore/shared-api-client": "workspace:*",
|
|
"@manacore/shared-auth": "workspace:*",
|
|
"@manacore/shared-auth-stores": "workspace:*",
|
|
"@manacore/shared-auth-ui": "workspace:*",
|
|
"@manacore/shared-branding": "workspace:*",
|
|
"@manacore/shared-error-tracking": "workspace:*",
|
|
"@manacore/shared-i18n": "workspace:*",
|
|
"@manacore/shared-icons": "workspace:*",
|
|
"@manacore/shared-stores": "workspace:*",
|
|
"@manacore/shared-tailwind": "workspace:*",
|
|
"@manacore/shared-theme": "workspace:*",
|
|
"@manacore/shared-theme-ui": "workspace:*",
|
|
"@manacore/shared-types": "workspace:*",
|
|
"@manacore/shared-ui": "workspace:*",
|
|
"@manacore/shared-utils": "workspace:*",
|
|
"@manacore/feedback": "workspace:*",
|
|
"@manacore/help": "workspace:*",
|
|
"@manacore/subscriptions": "workspace:*",
|
|
"date-fns": "^4.1.0",
|
|
"marked": "^17.0.0",
|
|
"svelte-i18n": "^4.0.1",
|
|
"zod": "^4.1.12"
|
|
}
|
|
}
|