Files
TeamFlow--Trello-Like-/package.json
admin 460f83aef8 🌊 TeamFlow — Modern Trello alternative with email integration
- Full-stack: React 18 + Express + SQLite
- Drag-and-drop kanban boards with @hello-pangea/dnd
- Google App Password email integration (SMTP + IMAP)
- Inbound email: create cards by sending emails
- Reply-to-card: email replies become comments
- Admin/user management with role-based access
- Setup wizard: email config → admin creation
- Checklists, time tracking, priorities, labels, due dates
- Real-time notifications with activity feed
- Beautiful HTML email templates
2026-04-03 15:11:27 +00:00

19 lines
648 B
JSON

{
"name": "teamflow",
"version": "1.0.0",
"description": "Innovative Trello alternative with email integration for small teams",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && node index.js",
"dev:client": "cd client && npx vite --host",
"build": "cd client && npx vite build",
"start": "cd server && NODE_ENV=production node index.js",
"setup": "cd server && node index.js && cd ../client && npx vite build",
"install:all": "npm install && cd client && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}