-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.13 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.13 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
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
72
73
{
"name": "elysia-react-app",
"version": "0.1.0",
"description": "Fast and type-safe full-stack starter powered by Bun, Elysia, React, and shadcn/ui.",
"author": {
"name": "Trexolab Solution",
"url": "https://github.com/trexolab-solution"
},
"license": "MIT",
"private": false,
"keywords": [
"bun",
"elysia",
"react",
"fullstack",
"typescript",
"tailwindcss",
"template",
"starter"
],
"homepage": "https://github.com/trexolab-solution/elysia-react-app#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/trexolab-solution/elysia-react-app.git"
},
"bugs": {
"url": "https://github.com/trexolab-solution/elysia-react-app/issues"
},
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"dev": "bun run --watch server/index.ts",
"build": "bun build --compile --compile-autoload-tsconfig --compile-autoload-package-json ./server/index.ts --outfile ./build/server",
"start": "./build/server",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"auth:generate": "npx @better-auth/cli@latest generate --config server/lib/auth.ts --output ./server/db/schemas/auth-schema.ts --yes",
"typecheck": "bun x tsc --noEmit",
"lint": "bun x eslint . --ext .ts,.tsx",
"clean": "rm -rf ./build ./dist"
},
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"@elysiajs/static": "^1.4.7",
"@libsql/client": "^0.17.0",
"@radix-ui/react-slot": "^1.2.4",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"better-auth": "^1.4.17",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"elysia": "latest",
"lucide-react": "^0.563.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "4",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.7",
"bun-plugin-tailwind": "^0.1.2",
"bun-types": "latest",
"drizzle-kit": "^0.31.8",
"tsx": "^4.21.0"
},
"module": "src/index.js"
}