Всё переделано, разделено на backend и frontend

This commit is contained in:
Georgiy Syralev
2025-09-15 19:23:52 +03:00
parent a7a24dac88
commit f37e85e2e0
16 changed files with 4338 additions and 731 deletions

View File

@@ -2,29 +2,31 @@
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node dist/index.js",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"-": "^0.0.1",
"@prisma/client": "^6.16.1",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.4.0",
"bcrypt": "^6.0.0",
"@prisma/client": "^5.14.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"prisma": "^6.16.1",
"prisma": "^5.14.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.12",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.2"
"typescript": "^5.4.5"
}
}
}