-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 960 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "larngear24-passport-backend",
"version": "1.1.0",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --target bun --outdir ./dist",
"start": "NODE_ENV=production bun dist/index.js",
"start:migrate:prod": "prisma generate && prisma migrate deploy && bun run start",
"test": "bun test",
"db:generate": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"postinstall": "prisma generate",
"format": "prettier --write src/**/*.ts"
},
"dependencies": {
"@bogeychan/elysia-logger": "^0.1.7",
"@elysiajs/cors": "^1.2.0",
"@elysiajs/swagger": "1.1.3",
"@prisma/client": "^5.22.0",
"elysia": "^1.2.6"
},
"devDependencies": {
"bun-types": "latest",
"prettier-plugin-organize-imports": "^4.1.0",
"prisma": "^5.22.0",
"tsx": "^4.19.2"
},
"module": "src/index.js"
}