Files
SerpentRace/SerpentRace_Backend/package.json
T

37 lines
949 B
JSON

{
"name": "serpentrace_backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"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": {
"@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",
"ts-node": "^10.9.2"
}
}