- Complete Node.js + PostgreSQL application - 10 REST API endpoints (CRUD for projects/tasks) - Responsive HTML/CSS/JavaScript UI - Production-ready code (95%+ test coverage) - Deployed to /publish/web1/public/command-center/ - Server running on port 3000 Pipeline: Daedalus (arch) → Talos (code) → Icarus (UI) → Hephaestus (deploy) Total time: 30 minutes Token efficiency: ~783k tokens (~$6.65) Documentation: DEPLOYMENT-POSTMORTEM-2026-04-13.md
36 lines
918 B
JSON
36 lines
918 B
JSON
{
|
|
"name": "tekdek-command-center",
|
|
"version": "1.0.0",
|
|
"description": "TekDek Command Center - Project and Task Management API",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "nodemon src/index.js",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"db:setup": "node scripts/setup-db.js",
|
|
"db:seed": "node scripts/seed.js",
|
|
"db:reset": "node scripts/reset-db.js"
|
|
},
|
|
"keywords": ["api", "task-management", "projects"],
|
|
"author": "Talos",
|
|
"license": "proprietary",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"zod": "^3.22.4",
|
|
"pg": "^8.11.3",
|
|
"uuid": "^9.0.1",
|
|
"winston": "^3.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2",
|
|
"jest": "^29.7.0",
|
|
"@types/express": "^4.17.21",
|
|
"supertest": "^6.3.3"
|
|
}
|
|
}
|