- WebAuthn: register/auth options, device management - PWA widget page + manifest shortcuts - Group schedule endpoint (timezones + locations) - UI #3-#6: compact headers on tasks/calendar/projects/goals - UI #9: mobile responsive top bars - webauthn_credentials table Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
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/rate-limit": "^10.3.0",
|
|
"@fastify/swagger": "^9.7.0",
|
|
"@fastify/swagger-ui": "^5.2.5",
|
|
"@fastify/websocket": "^11.2.0",
|
|
"@simplewebauthn/server": "^12.0.0",
|
|
"bcrypt": "^6.0.0",
|
|
"bcryptjs": "^3.0.3",
|
|
"dotenv": "^17.3.1",
|
|
"fastify": "^5.8.4",
|
|
"ioredis": "^5.10.1",
|
|
"nodemailer": "^8.0.4",
|
|
"passport": "^0.7.0",
|
|
"passport-facebook": "^3.0.0",
|
|
"passport-google-oauth20": "^2.0.0",
|
|
"pg": "^8.20.0",
|
|
"redis": "^5.11.0",
|
|
"uuid": "^13.0.0",
|
|
"web-push": "^3.6.7"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.14"
|
|
}
|
|
}
|