feat: initial import — ClickerZ formation project (Express + React/Vite)

This commit is contained in:
2026-03-15 14:29:33 +01:00
commit 4e93753250
118 changed files with 71039 additions and 0 deletions

22
Backend/package.json Executable file
View File

@@ -0,0 +1,22 @@
{
"scripts": {
"dev": "nodemon index.js",
"db:migrate": "node migrate.js",
"db:seed": "node seed.js",
"build": "node migrate.js",
"start": "node index.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"joi": "^17.13.1",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.9.1",
"nodemailer": "^6.9.9"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}