mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:41:09 +02:00
- Add vCard/CSV file import with duplicate detection and merge options - Add Google Contacts OAuth2 integration for importing from Google - Add vCard/CSV export with format selection and filtering options - Add connected_accounts table for OAuth token storage - Add FileUploader, ImportPreview, GoogleImport components - Add ExportModal with format selection (vCard/CSV) - Add i18n translations for import/export (DE/EN)
22 lines
652 B
JSON
22 lines
652 B
JSON
{
|
|
"name": "todo",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Todo App - Task Management for ManaCore Ecosystem",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"dev:backend": "pnpm --filter @todo/backend dev",
|
|
"dev:web": "pnpm --filter @todo/web dev",
|
|
"dev:landing": "pnpm --filter @todo/landing dev",
|
|
"build": "turbo run build",
|
|
"lint": "turbo run lint",
|
|
"clean": "turbo run clean",
|
|
"db:push": "pnpm --filter @todo/backend db:push",
|
|
"db:studio": "pnpm --filter @todo/backend db:studio",
|
|
"db:seed": "pnpm --filter @todo/backend db:seed"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"packageManager": "pnpm@9.15.0"
|
|
}
|