Commit initial : version fonctionnelle du projet

This commit is contained in:
Mouktar Kimba
2025-06-10 05:20:19 +02:00
commit a8acba240b
39 changed files with 7798 additions and 0 deletions

40
backend/package.json Normal file
View File

@ -0,0 +1,40 @@
{
"name": "gestionnaire-taches-api",
"version": "1.0.0",
"description": "API backend pour l'application de gestion de tâches.",
"author": "Ton Nom <ton.email@example.com>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/TonNom/TonRepo.git"
},
"scripts": {
"format": "prettier -l --write \"**/*.js\"",
"format-check": "prettier --check \"**/*.js\"",
"test": "jest",
"dev": "nodemon src/index.js"
},
"dependencies": {
"express": "^4.18.2",
"mysql2": "^3.9.1",
"sqlite3": "^5.1.7",
"uuid": "^9.0.1",
"wait-port": "^1.1.0"
},
"resolutions": {
"@babel/core": "7.23.9"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4"
}
}