This commit is contained in:
2025-12-29 16:58:56 +03:00
commit 524f3ebf23
62 changed files with 30925 additions and 0 deletions

27
package.json Normal file
View File

@ -0,0 +1,27 @@
{
"name": "team-planner",
"version": "1.0.0",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "concurrently -n be,fe -c blue,green \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run dev -w backend",
"dev:frontend": "npm run dev -w frontend",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "npm run build -w backend",
"build:frontend": "npm run build -w frontend",
"lint": "npm run lint -w backend && npm run lint -w frontend",
"db:up": "docker-compose up -d postgres",
"db:down": "docker-compose down"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3"
}
}