mirror of
https://github.com/Alvin-Zilverstand/challenge-11.git
synced 2026-03-06 21:29:13 +01:00
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:
24
package.json
Normal file
24
package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user