Files
vibe-kanban/package.json

28 lines
1.2 KiB
JSON
Raw Normal View History

2025-06-14 15:14:08 -04:00
{
2025-06-17 20:36:25 -04:00
"name": "vibe-kanban",
"version": "0.0.1",
2025-06-14 15:14:08 -04:00
"private": true,
"scripts": {
2025-06-21 18:23:34 +01:00
"dev": "concurrently \"cargo watch -w backend -x 'run --manifest-path backend/Cargo.toml'\" \"npm run frontend:dev\"",
"build": "npm run frontend:build && cargo build --release --manifest-path backend/Cargo.toml && cargo build --release --bin mcp_task_server --manifest-path backend/Cargo.toml",
2025-06-17 11:24:03 -04:00
"build:single": "npm run frontend:build && cargo build --release --manifest-path backend/Cargo.toml",
"build:npm": "./build-npm-package.sh",
"test:npm": "./test-npm-package.sh",
2025-06-14 15:14:08 -04:00
"frontend:dev": "cd frontend && npm run dev",
"frontend:build": "cd frontend && npm run build",
2025-06-21 18:23:34 +01:00
"backend:dev": "cargo watch -w backend -x 'run --manifest-path backend/Cargo.toml'",
2025-06-14 15:14:08 -04:00
"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",
2025-06-15 16:53:26 -04:00
"backend:test": "cargo test --lib",
2025-06-20 14:33:15 +01:00
"generate-types": "cd backend && cargo run --bin generate_types",
"prepare-db": "node scripts/prepare-db.js"
2025-06-14 15:14:08 -04:00
},
"devDependencies": {
"concurrently": "^8.2.2",
"vite": "^6.3.5"
2025-06-14 15:14:08 -04:00
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
}
}