forked from databuddy-analytics/Databuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.86 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.86 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
{
"name": "databuddy",
"module": "index.ts",
"devDependencies": {
"@biomejs/biome": "^2.3.2",
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20251102.1",
"dotenv-cli": "^10.0.0",
"turbo": "^2.6.0",
"typescript": "^5.9.3",
"ultracite": "^6.1.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.2.19",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "dotenv -- turbo run dev",
"start": "turbo run start",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"lint": "npx ultracite@latest check",
"format": "npx ultracite@latest fix",
"check-types": "tsgo --noEmit --project .",
"generate-db": "turbo run generate --filter=@databuddy/db",
"db:studio": "dotenv -- turbo run db:studio",
"clickhouse:init": "dotenv -- turbo run clickhouse:init",
"db:push": "dotenv -- turbo run db:push",
"db:migrate": "dotenv -- turbo run db:migrate",
"db:deploy": "dotenv -- turbo run db:deploy",
"db:seed": "dotenv -- sh -c 'cd packages/db && bun run db:seed \"$@\"' --",
"email:dev": "cd packages/email && bun run dev",
"sdk:build": "cd packages/sdk && bun run build",
"dashboard:dev": "dotenv -- cd apps/dashboard; bun run dev"
},
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"react": "19.0.0",
"react-dom": "19.0.0",
"next": "^15.3.4",
"typescript": "^5.9.3",
"zod": "4.1.12",
"tailwindcss": "^4.1.4",
"autumn-js": "^0.0.101",
"stripe": "^18.2.1",
"dayjs": "^1.11.13",
"elysia": "^1.3.4",
"pino": "^9.7.0",
"vitest": "^3.2.4",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.2.0",
"framer-motion": "^12.23.6",
"sonner": "^2.0.6",
"vaul": "^1.1.2",
"@tanstack/react-query": "^5.82.0",
"@trpc/client": "^11.4.3",
"@trpc/react-query": "^11.4.3",
"@trpc/server": "^11.4.3",
"superjson": "^2.2.2",
"jotai": "^2.12.5",
"@clickhouse/client": "^1.11.1",
"@clickhouse/client-web": "^1.11.1",
"@logtail/edge": "^0.5.4",
"@logtail/js": "^0.5.5",
"@logtail/pino": "^0.5.5",
"@biomejs/biome": "2.2.2",
"@types/bun": "latest",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"bun-types": "latest",
"ultracite": "5.3.10",
"turbo": "^2.5.2",
"drizzle-orm": "^0.42.0",
"nanoid": "^5.1.6"
}
},
"dependencies": {
"pg": "^8.16.3",
"pg-pool": "^3.10.1",
"prettier": "^3.6.2"
}
}