Files
2024-02-08 13:59:12 +01:00

41 lines
1.1 KiB
JSON

{
"name": "space-game-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/app.ts",
"build": "tsc",
"start": "node -r dotenv/config ./build/app.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.4",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^3.0.13",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"prisma": "^5.9.1"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"@types/cors": "^2.8.17",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"prisma-dbml-generator": "^0.10.0",
"zod": "^3.22.4"
}
}