All checks were successful
continuous-integration/drone/push Build is passing
Replace project-local ESLint, Prettier, TypeScript, and Vite configs with shared packages from dev-configs monorepo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"name": "team-planner",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"backend",
|
|
"frontend",
|
|
"tests"
|
|
],
|
|
"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",
|
|
"format": "npm run -w backend format && npm run -w frontend format",
|
|
"build": "npm run build:backend && npm run build:frontend",
|
|
"build:backend": "npm run build -w backend",
|
|
"build:frontend": "npm run build -w frontend",
|
|
"test": "npm run test -w tests",
|
|
"test:ui": "npm run test:ui -w tests",
|
|
"test:headed": "npm run test:headed -w tests",
|
|
"db:up": "docker-compose up -d postgres",
|
|
"db:down": "docker-compose down"
|
|
},
|
|
"devDependencies": {
|
|
"@vigdorov/prettier-config": "^1.0.0",
|
|
"concurrently": "^9.1.2",
|
|
"prettier": "^3.5.3"
|
|
},
|
|
"dependencies": {
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.3"
|
|
}
|
|
}
|