Initial commit

This commit is contained in:
Futaki Zoltán
2026-02-09 11:53:54 +01:00
parent 26ebc6f2e8
commit a04704c9f7
22 changed files with 5988 additions and 0 deletions

19
backend/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "autoszalonbackend",
"version": "1.0.0",
"description": "backend api az autoszalon frontendhez",
"license": "ISC",
"author": "pp",
"type": "commonjs",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"sequelize": "^6.37.7",
"sqlite3": "^5.1.7"
}
}