[#40] BACKEND USER, Company

https://project.mdnd-it.cc/work_packages/40
This commit is contained in:
2025-06-15 01:12:46 +02:00
parent f68540f511
commit fa868e7c1d
32 changed files with 6337 additions and 860 deletions
+24 -8
View File
@@ -1,20 +1,36 @@
{
"name": "serpentrace_backend",
"version": "1.0.0",
"main": "index.mjs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon ./src/index.mjs",
"start": "nodemon ./src/index.mjs"
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc -p tsconfig.json && node ./prisma/prisma-migrate-all.js",
"lint": "eslint . --ext .ts",
"migrate:all": "node ./prisma/prisma-migrate-all.js"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^5.1.0"
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.21",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"minio": "^8.0.5",
"typeorm": "^0.3.24",
"typescript": "^5.8.3",
"winston": "^3.17.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
},
"type": "module"
"nodemon": "^3.1.10",
"ts-node": "^10.9.2"
}
}