- Express backend with SQLite - Session-based authentication - Drag-and-drop Kanban board - API key auth for service integration - Dark vainplex theme
16 lines
335 B
JSON
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"
|
|
}
|
|
}
|