-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 931 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
{
"name": "bun-elysia-boiler-plate",
"version": "1.0.50",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/server.ts",
"build": "bun build --minify --target bun --outdir dist src/index.ts",
"compile": "bun build --compile --minify --target bun --outfile server src/index.ts",
"start": "bun dist/index.js",
"better-auth_generate": "npx @better-auth/cli@latest generate --output=src/auth/models/better_auth.ts",
"makemigrations": "npx drizzle-kit generate",
"migrate": "npx drizzle-kit migrate"
},
"dependencies": {
"@elysiajs/cors": "^1.1.1",
"@elysiajs/static": "^1.1.1",
"@elysiajs/swagger": "^1.1.5",
"better-auth": "^0.4.11",
"drizzle-orm": "^0.33.0",
"elysia": "latest",
"postgres": "^3.4.4"
},
"devDependencies": {
"bun-types": "latest",
"drizzle-kit": "^0.24.2"
},
"module": "src/index.js"
}