-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.07 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 4.07 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "setup",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "infisical run -- bun -b concurrently --names \"DOCKER,APP\" -c \"blue,magenta\" \"bun run db:start\" \"bun run db:wait && bun run dev:app\"",
"dev:app": "concurrently --names \"VITE,STUDIO\" -c \"cyan,yellow\" \"vite dev\" \"bun run db:studio\"",
"db:studio": "drizzle-kit studio",
"db:start": "docker compose -f docker-compose.dev.yml up",
"db:wait": "bash -c 'until docker compose -f docker-compose.dev.yml exec -T postgres pg_isready -U ${POSTGRES_USER:-postgres} > /dev/null 2>&1; do sleep 1; done'",
"db:push": "infisical run -- drizzle-kit push",
"db:generate": "infisical run -- drizzle-kit generate",
"db:migrate": "infisical run -- drizzle-kit migrate",
"db:import": "infisical run -- bun run scripts/db-import.ts",
"auth:generate": "infisical run -- bun x auth@latest generate --output ./server/database/schema/auth.ts --config ./server/lib/auth.ts -y",
"build": "vite-react-ssg build -c vite.config.ssg.ts && vite build",
"start": "NODE_ENV=production PORT=8080 bun run dist-server/_worker.js",
"import:staging": "bash scripts/import-staging.sh",
"typecheck": "tsc --noEmit && tsc --noEmit -p server/tsconfig.json && tsc --noEmit -p web/tsconfig.json",
"all": "bun run format && bun run lint && bun run typecheck && bun run build && bun run test:dev",
"lint": "biome check . --write && bun run check-locale",
"test": "vitest run",
"test:dev": "infisical run -- vitest watch",
"lint:check": "biome check . && bun run check-locale",
"format": "biome format . --write",
"format:check": "biome format .",
"check-locale": "bun run scripts/check-locale.ts"
},
"bun-create": {
"preinstall": "echo 'Creating a new zerodays/full-stack-starter project 🏗'",
"postinstall": "echo 'Done - happy building! 💎'"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@electric-sql/pglite": "^0.3.15",
"@hono/vite-dev-server": "^0.24.0",
"@types/bun": "latest",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"concurrently": "^9.0.0",
"react-router-dom": "^6.26.2",
"tw-animate-css": "^1.4.0",
"vite": "^7.3.0",
"vite-react-ssg": "^0.8.9",
"vitest": "^4.0.18"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@better-auth/core": "1.5.5",
"@better-auth/infra": "^0.1.12",
"@hono/otel": "^1.1.0",
"@hono/zod-validator": "^0.7.6",
"@kubiks/otel-better-auth": "^2.0.2",
"@kubiks/otel-drizzle": "^2.1.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.67.3",
"@opentelemetry/context-zone": "^2.3.0",
"@opentelemetry/core": "^2.3.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.209.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.209.0",
"@opentelemetry/instrumentation": "^0.209.0",
"@opentelemetry/instrumentation-document-load": "^0.54.0",
"@opentelemetry/instrumentation-fetch": "^0.209.0",
"@opentelemetry/instrumentation-xml-http-request": "^0.209.0",
"@opentelemetry/resources": "^2.3.0",
"@opentelemetry/sdk-node": "^0.209.0",
"@opentelemetry/sdk-trace-base": "^2.3.0",
"@opentelemetry/sdk-trace-web": "^2.3.0",
"@opentelemetry/semantic-conventions": "^1.38.0",
"@radix-ui/react-slot": "^1.2.4",
"@sentry/bun": "^10.32.1",
"@t3-oss/env-core": "^0.13.10",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.90.19",
"better-auth": "^1.5.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.45.1",
"hono": "^4.11.3",
"hono-rpc-query": "^1.5.0",
"i18next": "^25.7.4",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.562.0",
"pg": "^8.16.3",
"pino": "^10.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-i18next": "^16.5.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"zod": "^4.3.5"
}
}