Files
nick-tracker/package.json
Debian 64b8e0d80c feat: implement Phase 1 Foundation for AutoScheduler GTD System
- Initialize npm workspaces monorepo (backend, frontend, shared-types)
- Scaffold NestJS backend with modules: Auth, Users, Tasks, Projects, Inbox, Health
- Create React frontend with Vite, TailwindCSS, Radix UI
- Implement TypeORM entities: User, InboxItem, Task, Project
- Add JWT authentication with Passport.js and bcrypt
- Build Inbox capture API (POST /inbox, GET /inbox, POST /inbox/:id/process)
- Create Inbox UI with quick-add form and GTD processing workflow modal
- Configure Docker Compose stack (postgres, redis, backend, frontend)
- Add health check endpoint with database/Redis status
- Write unit tests for auth and inbox services

Phase 1 features complete:
- GTD Inbox Capture: Manual tasks via web form quick-add
- GTD Processing Workflow: Interactive inbox processing interface

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-11 08:42:54 +00:00

27 lines
1.0 KiB
JSON

{
"name": "nick-tracker",
"version": "1.0.0",
"description": "AutoScheduler GTD System - Self-hosted web application implementing GTD methodology with automatic calendar scheduling",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "npm run build -w @nick-tracker/shared-types && npm run dev --workspaces --if-present",
"build": "npm run build -w @nick-tracker/shared-types && npm run build -w @nick-tracker/backend && npm run build -w @nick-tracker/frontend",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"migration:generate": "npm run migration:generate -w @nick-tracker/backend",
"migration:run": "npm run migration:run -w @nick-tracker/backend",
"migration:revert": "npm run migration:revert -w @nick-tracker/backend"
},
"devDependencies": {
"typescript": "^5.3.3"
}
}