This commit is contained in:
2025-09-14 19:34:53 +02:00
parent da735935e9
commit 2ea82efe6b
70 changed files with 4381 additions and 1 deletions

39
ready/package.json Normal file
View File

@@ -0,0 +1,39 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"license": "MIT",
"author": "",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "nodemon --watch src/ node src/init.js",
"prepare": "husky"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"joi": "^18.0.1",
"joi-to-swagger": "^6.2.0",
"mysql2": "^3.14.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"nodemon": "^3.1.10",
"prettier": "^3.6.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}