- 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>
28 lines
706 B
JSON
28 lines
706 B
JSON
{
|
|
"name": "@nick-tracker/shared-types",
|
|
"version": "1.0.0",
|
|
"description": "Shared TypeScript types for nick-tracker",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --dts --format cjs,esm",
|
|
"dev": "tsup src/index.ts --dts --format cjs,esm --watch",
|
|
"clean": "rm -rf dist",
|
|
"lint": "echo 'No lint configured'",
|
|
"test": "echo 'No tests'",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.0.1",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|