compro-mit/package.json
fadilkun45 7b4b955c99 feat: add contact form and API integration
- Implemented a contact form with validation and submission functionality.
- Added a dummy API endpoint for contact form submissions.
- Integrated Axios for API requests and error handling.
- Updated UI components for input handling and error display.
- Added toast notifications for user feedback on form submission.
- Included WhatsApp bubble component for enhanced user interaction.
- Updated layout to include new contact page and components.
- Added Docker support for development and production environments.
- Created Makefile for easier deployment and management of Docker containers.
2026-09-04 14:58:16 +07:00

31 lines
665 B
JSON

{
"name": "compro-mit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"axios": "^1.16.1",
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-fast-marquee": "^1.6.5",
"react-toastify": "^11.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}