29 lines
634 B
JSON
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"
|
|
}
|
|
}
|