npi-2026/api/package.json
DJP 26d3eb03ed Initial commit — NPI Tracker application
Full-stack NPI (New Product Introduction) gate tracking tool with:
- Express/TypeScript API with PostgreSQL
- React/Vite/Mantine frontend
- 13-gate process (G0-G12) with 4 product categories
- RACI matrix auto-population from templates
- File attachments with preview (images, PDFs, text)
- Kanban board, Gantt/timeline views
- Docker Compose orchestration

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-02 14:36:31 -04:00

32 lines
740 B
JSON

{
"name": "npi-tracker-api",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"scheduler": "tsx watch src/scheduler.ts"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.0",
"helmet": "^7.1.0",
"multer": "^2.1.1",
"node-cron": "^3.0.3",
"pg": "^8.13.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^2.1.0",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.10",
"@types/uuid": "^10.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}