Files
team-planner/package.json
vigdorov 2953a97a46
All checks were successful
continuous-integration/drone/push Build is passing
fix tests
2026-01-14 01:20:27 +03:00

28 lines
798 B
JSON

{
"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",
"lint": "npm run -w backend lint && npm run -w frontend lint",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "npm run build -w backend",
"build:frontend": "npm run build -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"
}
}