A peer-to-peer platform where users exchange skills and tasks without money. Trade "I'll write your email if you solve this Excel issue for me" style exchanges with a token-based fairness system.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ ├── routes/
│ │ ├── auth.ts # Authentication endpoints
│ │ ├── tasks.ts # Task CRUD operations
│ │ ├── users.ts # User management
│ │ ├── messages.ts # Direct messaging
│ │ └── static.ts # Static file serving
│ └── index.ts # Main Hono app
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application
│ │ ├── TaskCard.tsx # Task display component
│ │ ├── UserProfile.tsx # User profile component
│ │ └── MessageThread.tsx # Messaging component
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ └── style.css # Global styles
└── shared/
├── types.ts # Shared TypeScript types
└── utils.ts # Shared utility functions