mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 20:12:58 +00:00
67dc5cc737
Refactor the frontend to use a more consistent design system and improve the overall user interface and experience. - Implement a consistent use of `Card` components across various pages (Dashboard, Settings, Notes, etc.). - Improve layout responsiveness and spacing in several modules. - Enhance the Tasks page with drag-and-drop status updates and a Kanban-style view. - Update the Calendar view with better color coding for task priorities and types. - Refactor the Bookmarks page to use a grid layout with improved card previews. - Update the Nginx configuration to handle SPA routing and health checks more effectively. - Standardize import paths using `@/` aliases. - Fix minor bugs in message sending and loading states. - Update Docker configuration to build from source and use a specific backend port.
50 lines
1.7 KiB
JSON
50 lines
1.7 KiB
JSON
{
|
|
"name": "trackeep",
|
|
"version": "1.0.0",
|
|
"description": "Your Self-Hosted Productivity & Knowledge Hub",
|
|
"private": true,
|
|
"workspaces": [
|
|
"frontend",
|
|
"mobile",
|
|
"video"
|
|
],
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"dev:backend": "cd backend && go run main.go",
|
|
"dev:mobile": "npm --workspace mobile run start",
|
|
"dev:desktop": "cd desktop && npm run tauri:dev",
|
|
"dev:video": "npm --workspace video run dev",
|
|
"build": "npm run build:frontend && npm run build:backend",
|
|
"build:frontend": "cd frontend && npm run build",
|
|
"build:backend": "cd backend && go build -o ../dist/trackeep-server main.go",
|
|
"build:desktop": "cd desktop && npm run tauri:build",
|
|
"render:video": "npm --workspace video run render",
|
|
"render:video:vertical": "npm --workspace video run render:vertical",
|
|
"render:video:poster": "npm --workspace video run render:poster",
|
|
"install:all": "npm install && cd frontend && npm install && cd ../mobile && npm install && cd ../desktop && npm install",
|
|
"clean": "rm -rf dist node_modules frontend/node_modules mobile/node_modules desktop/node_modules backend/vendor desktop/dist desktop/src-tauri/target",
|
|
"postinstall": "patch-package || true"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2",
|
|
"patch-package": "^8.0.1",
|
|
"shadcn": "^4.0.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"go": ">=1.21.0"
|
|
},
|
|
"keywords": [
|
|
"productivity",
|
|
"bookmarks",
|
|
"tasks",
|
|
"knowledge-management",
|
|
"self-hosted",
|
|
"solidjs",
|
|
"golang"
|
|
],
|
|
"author": "Trackeep Team",
|
|
"license": "MIT"
|
|
}
|