Initial commit: restructure project with Docker Compose setup

This commit is contained in:
Admin
2026-05-26 20:16:01 +05:00
commit 47b15787f3
48 changed files with 6074 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"name": "psychologist-backend",
"version": "1.0.0",
"description": "Backend for psychologist website - email applications",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"start:dev": "ts-node src/main.ts",
"start:debug": "ts-node --inspect src/main.ts"
},
"dependencies": {
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.3.0",
"@nestjs/platform-express": "^10.3.0",
"@nestjs/config": "^3.1.1",
"class-validator": "^0.14.1",
"class-transformer": "^0.5.1",
"nodemailer": "^6.9.8",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@types/nodemailer": "^6.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}