Files
stats/apps/backend/package.json
Carl-Gerhard Lindesvärd 9ce18c480d do migrate on start instead
2023-10-12 08:15:23 +02:00

29 lines
634 B
JSON

{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "bunx prisma migrate deploy && bun src/app.ts",
"dev": "bun --watch src/app.ts",
"codegen": "bunx prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mixan/types": "workspace:*",
"@prisma/client": "^5.4.2",
"express": "^4.18.2",
"morgan": "^1.10.0",
"prisma": "^5.4.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.18",
"@types/morgan": "^1.9.6",
"bun-types": "latest",
"typescript": "^5.0.0"
}
}