taskboard/package.json
Claudia f158a3d09c Initial commit: vainplex TaskBoard
- Express backend with SQLite
- Session-based authentication
- Drag-and-drop Kanban board
- API key auth for service integration
- Dark vainplex theme
2026-01-26 14:51:14 +01:00

16 lines
335 B
JSON

{
"name": "vainplex-taskboard",
"version": "1.0.0",
"description": "Kanban task board for Claudia",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node server.js"
},
"dependencies": {
"express": "^4.18.2",
"better-sqlite3": "^9.4.3",
"cors": "^2.8.5",
"uuid": "^9.0.0"
}
}