Files
vibe-kanban/package.json

22 lines
786 B
JSON
Raw Normal View History

2025-06-14 15:14:08 -04:00
{
"name": "bloop",
"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",
"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",
2025-06-14 17:36:54 -04:00
"backend:run": "cargo run --manifest-path backend/Cargo.toml",
"generate-types": "cd backend && cargo run --bin generate_types"
2025-06-14 15:14:08 -04:00
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
}
}