This commit is contained in:
Carl-Gerhard Lindesvärd
2023-10-11 12:34:35 +02:00
commit 903fd155c3
40 changed files with 1385 additions and 0 deletions

27
apps/backend/package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "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": "^1.0.5-canary.20231009T140142"
}
}