Initializes the Condopay frontend project using Vite, React, and TypeScript. Includes basic project structure, dependencies, and configuration for Tailwind CSS and React Router.
20 lines
430 B
JSON
20 lines
430 B
JSON
{
|
|
"name": "condo-backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend API for CondoPay",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js"
|
|
},
|
|
"dependencies": {
|
|
"bcryptjs": "^2.4.3",
|
|
"body-parser": "^1.20.2",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.19.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"mysql2": "^3.9.2",
|
|
"uuid": "^9.0.1"
|
|
}
|
|
} |