Rename all workspace packages to reflect the actual project name: - @caldav/client -> @calchat/client - @caldav/server -> @calchat/server - @caldav/shared -> @calchat/shared - Root package: caldav-mono -> calchat-mono Update all import statements across client and server to use the new package names. Update default MongoDB database name and logging service identifier accordingly.
32 lines
700 B
JSON
32 lines
700 B
JSON
{
|
|
"name": "@calchat/server",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "tsx watch src/app.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/app.js"
|
|
},
|
|
"dependencies": {
|
|
"@calchat/shared": "*",
|
|
"bcrypt": "^6.0.0",
|
|
"dotenv": "^16.4.7",
|
|
"express": "^5.2.1",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"mongoose": "^9.1.1",
|
|
"openai": "^6.15.0",
|
|
"pino": "^10.1.1",
|
|
"pino-http": "^11.0.0",
|
|
"rrule": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^6.0.0",
|
|
"@types/express": "^5.0.6",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/node": "^24.10.1",
|
|
"pino-pretty": "^13.1.3",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|