-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.06 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "bun-elysia-modular_auth",
"author": {
"name": "Just.Chola",
"email": "[email protected]",
"github": "https://github.com/cholasimmons"
},
"version": "0.4.5",
"trustedDependencies": [
"@prisma/client",
"@prisma/engines",
"esbuild",
"prisma"
],
"prisma": {
"seed": "bun tsx prisma/seed.ts"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bun build --compile --minify --sourcemap --target=bun-linux-x64 src/index.ts --outfile app",
"compile": "NODE_ENV=production bun build src/index.ts --compile --minify --outfile ./build/bundle",
"dev": "bun run --watch src/index.ts",
"prisma:generate": "bunx prisma generate",
"prisma:seed": "bunx prisma db seed",
"prisma:deploy": "bunx prisma migrate deploy",
"start": "NODE_ENV=production bun run src/index.ts"
},
"dependencies": {
"@bogeychan/elysia-logger": "^0.1.8",
"@elysiajs/cookie": "^0.8.0",
"@elysiajs/cors": "^1.2.0",
"@elysiajs/cron": "^1.2.0",
"@elysiajs/html": "^1.2.0",
"@elysiajs/jwt": "^1.2.0",
"@elysiajs/lucia-auth": "^1.1.0",
"@elysiajs/opentelemetry": "^1.2.0",
"@elysiajs/static": "^1.2.0",
"@elysiajs/swagger": "1.0.5",
"@lucia-auth/adapter-prisma": "^4.0.1",
"@prisma/client": "^6.3.0",
"arctic": "^1.9.2",
"bullmq": "^5.39.1",
"chalk": "^5.4.1",
"elysia": "^1.2.10",
"elysia-helmet": "^2.0.0",
"elysia-htmx": "^1.0.9",
"elysia-http-status-code": "^1.0.9",
"elysia-ip": "^1.0.8",
"elysia-oauth2": "^1.3.0",
"elysia-prometheus-metrics": "^1.3.0",
"elysia-rate-limit": "^4.1.0",
"ioredis": "^5.4.2",
"logestic": "^1.2.4",
"lucia": "^3.2.2",
"mime": "^4.0.6",
"minio": "^8.0.4",
"nodemailer": "^6.10.0",
"oslo": "^1.2.1",
"pino-pretty": "^13.0.0",
"prom-client": "^15.1.3",
"resend": "^3.5.0",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/nodemailer": "^6.4.17",
"bun-types": "^1.2.2",
"prisma": "^6.3.0",
"tsx": "^4.19.2"
},
"module": "index.js"
}