-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 KB
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
32
33
34
35
36
{
"name": "zyotra-auth-service",
"version": "1.0.0",
"description": "Authentication microservice for Zyotra VPS deployment platform",
"author": "Zyotra Team",
"license": "MIT",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"build":"bun run db:generate && bun run db:migrate && bun build src/index.ts --outdir dist --target=bun"
},
"dependencies": {
"@elysiajs/cors": "^1.4.0",
"@types/cors": "^2.8.19",
"@types/jsonwebtoken": "^9.0.10",
"@types/nodemailer": "^7.0.4",
"bcryptjs": "^3.0.3",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"elysia": "latest",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^7.0.11",
"postgres": "^3.4.7"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"bun-types": "latest",
"drizzle-kit": "^0.31.7"
},
"module": "src/index.js",
"type": "module"
}