Remove index.html, styles.css, favicon.svg, script.js, and tailwind.config.js files to streamline the project and eliminate unused resources.

This commit is contained in:
Alvin
2025-06-10 09:16:11 +02:00
parent c07fdac03c
commit ef07016a14
12 changed files with 244 additions and 1579 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "car-tuning-crm",
"version": "1.0.0",
"description": "CRM system for car tuning business",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"client": "cd client && npm start",
"dev:full": "concurrently \"npm run dev\" \"npm run client\""
},
"dependencies": {
"express": "^4.18.2",
"mongoose": "^7.5.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1"
},
"devDependencies": {
"nodemon": "^3.0.1",
"concurrently": "^8.2.1"
}
}