- Express + EJS server-rendered app - Supabase PostgreSQL database - Auth: username/password with bcrypt - Dashboard with business stats - Load CRUD with filters - WhatsApp message parser - Payment tracking - Shipper & vehicle management - Reports (monthly, top shippers, routes) - Government-app aesthetic (tricolor theme) - Dark mode support - Docker + Coolify deployment ready - Seed data from existing business ledger (88 loads, 41 shippers, 70 vehicles)
25 lines
691 B
JSON
25 lines
691 B
JSON
{
|
|
"name": "freightdesk",
|
|
"version": "1.0.0",
|
|
"description": "FreightDesk — Freight Forwarding Commission Agent Management",
|
|
"main": "src/server.js",
|
|
"scripts": {
|
|
"start": "node src/server.js",
|
|
"dev": "node --watch src/server.js",
|
|
"seed": "node seed.js"
|
|
},
|
|
"keywords": ["freight", "logistics", "commission", "agent", "india"],
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^2.45.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"compression": "^1.7.4",
|
|
"cookie-parser": "^1.4.6",
|
|
"dotenv": "^16.4.5",
|
|
"ejs": "^3.1.9",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^7.1.5",
|
|
"express-session": "^1.18.0",
|
|
"helmet": "^7.1.0"
|
|
}
|
|
}
|