Files
vibe-kanban/package.json
Louis Knight-Webb d4b97a85d3 Prepare DB script
2025-06-20 14:33:15 +01:00

26 lines
997 B
JSON

{
"name": "vibe-kanban",
"private": true,
"scripts": {
"dev": "concurrently \"cargo watch -x 'run --manifest-path backend/Cargo.toml'\" \"npm run frontend:dev\"",
"build": "npm run frontend:build && cargo build --release --manifest-path backend/Cargo.toml",
"build:single": "npm run frontend:build && cargo build --release --manifest-path backend/Cargo.toml",
"frontend:dev": "cd frontend && npm run dev",
"frontend:build": "cd frontend && npm run build",
"backend:dev": "cargo watch -x 'run --manifest-path backend/Cargo.toml'",
"backend:build": "cargo build --release --manifest-path backend/Cargo.toml",
"backend:run": "cargo run --manifest-path backend/Cargo.toml",
"backend:test": "cargo test --lib",
"generate-types": "cd backend && cargo run --bin generate_types",
"prepare-db": "./prepare_db.sh"
},
"devDependencies": {
"concurrently": "^8.2.2",
"vite": "^6.3.5"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
}
}