Refactor code structure and remove redundant sections for improved readability and maintainability

This commit is contained in:
2025-06-11 18:48:20 -03:00
parent 2f6eb4f6c1
commit f9c1ece4f0
6 changed files with 4 additions and 4 deletions

28
backend/package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js",
"build": "tsc"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"multer": "^1.4.2",
"sqlite3": "^5.1.7",
"typeorm": "^0.2.29",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.8",
"@types/multer": "^1.4.5",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.3"
}
}