phase 1 backend

This commit is contained in:
el 2025-05-24 01:01:01 +02:00
parent a0897c2d38
commit 9653e55453
26 changed files with 3225 additions and 0 deletions

28
backend/package.json Normal file
View file

@ -0,0 +1,28 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"typescript": "^5.8.3"
},
"devDependencies": {
"@prisma/client": "^6.8.2",
"@types/express": "^5.0.2",
"@types/node": "^22.15.21",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"pg": "^8.16.0",
"prisma": "^6.8.2",
"ts-node-dev": "^2.0.0"
}
}