- AI Chat endpoint (/api/v1/chat) with Claude API context - Calendar page with FullCalendar.js (day/week/month) - Odoo API connector (import/export/webhook) - PWA manifest + service worker for offline - SW register component Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
33 lines
740 B
JSON
33 lines
740 B
JSON
{
|
|
"name": "task-team-api",
|
|
"version": "1.0.0",
|
|
"description": "Task Team API Server",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "node --watch src/index.js",
|
|
"test": "echo No tests yet"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.80.0",
|
|
"@fastify/cors": "^11.2.0",
|
|
"@fastify/helmet": "^13.0.2",
|
|
"@fastify/jwt": "^10.0.0",
|
|
"@fastify/swagger": "^9.7.0",
|
|
"@fastify/swagger-ui": "^5.2.5",
|
|
"bcrypt": "^6.0.0",
|
|
"dotenv": "^17.3.1",
|
|
"fastify": "^5.8.4",
|
|
"pg": "^8.20.0",
|
|
"redis": "^5.11.0",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.14"
|
|
}
|
|
}
|