The Bluebird Transport Management System is a comprehensive web application designed to streamline the management and administration of a package shipment operations. The frontend application is built using React and TypeScript. This project delivered to one of the biggest public taxi transportation vendor in Indonesia that is going to expand their business domain into package shipment services. The frontend application is designed to be scalable, maintainable, and easy to use.
.
├── .husky/ # Git hooks to ensure code quality before commits
├── cypress/ # Cypress directory for end-to-end tests
│ ├── component/ # Component tests
│ ├── fixtures/ # Mock data for testing
│ ├── support/ # Cypress utilities and configuration files
│ ├── utils/ # Helper functions for tests
├── public/ # Directory for static files (icons, images, etc.)
├── src/ # Main source code directory
│ ├── app/ # Application entry point
│ ├── assets/ # Static assets like images, icons, etc.
│ ├── components/ # Reusable UI components
│ ├── config/ # Application configuration files
│ ├── context/ # Global context using React Context API
│ ├── hooks/ # Custom hooks for application logic
│ ├── modules/ # Main application modules
│ ├── pages/ # Application pages
│ ├── providers/ # Context or state providers
│ ├── utility/ # Utility functions for the application
│ ├── index.tsx # Main entry file for the React application
├── Dockerfile # Docker configuration file for creating containers
├── index.html # Main HTML file for the application
├── package-lock.json # Lock file to ensure consistent dependencies
├── package.json # Project metadata and dependency list
├── postcss.config.js # PostCSS configuration for CSS processing
├── README.md # Project documentation
├── tailwind.config.js # Tailwind CSS configuration
├── tsconfig.json # TypeScript configuration for the main project
├── tsconfig.node.json # TypeScript configuration for Node.js
└── vite.config.ts # Vite configuration for the dev server and build process
- Architecting the base logic of API data provider and authentication provider.