-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.56 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.56 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
100
101
102
103
104
105
106
107
108
109
110
{
"name": "databuddy",
"module": "index.ts",
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-react-jsx": "^7.28.6",
"@biomejs/biome": "2.4.10",
"@evilmartians/lefthook": "^2.1.6",
"@types/bun": "latest",
"@types/dockerode": "^3.3.47",
"@types/node": "^24.12.2",
"chalk": "^5.6.2",
"culori": "^4.0.2",
"dockerode": "^4.0.10",
"dotenv-cli": "^10.0.0",
"ipaddr.js": "^2.3.0",
"knip": "^5.88.1",
"turbo": "^2.9.6",
"typescript": "^5.9.3",
"ultracite": "7.4.3"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.3.11",
"private": true,
"scripts": {
"prepare": "lefthook install",
"setup": "bun run setup.ts",
"build": "dotenv -- turbo run build",
"dev": "dotenv -- turbo run dev",
"start": "dotenv -- turbo run start",
"test": "dotenv -- turbo run test",
"test:watch": "dotenv -- bun test --watch ./apps",
"test:coverage": "dotenv -- bun test --coverage ./apps",
"lint": "bunx ultracite check",
"format": "bunx ultracite fix",
"check-types": "dotenv -- turbo run check-types",
"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": "dotenv -- sh -c 'cd packages/email && bun run dev'",
"sdk:build": "turbo run build --filter @databuddy/sdk --filter @databuddy/cache",
"dev:dashboard": "dotenv -- turbo dev --filter @databuddy/dashboard --filter @databuddy/api",
"git:setup-aliases": "git config --local include.path ../gitconfig",
"eval": "dotenv -- bun run --cwd packages/evals src/cli.ts",
"eval:ui": "dotenv -- bun run --cwd packages/evals ui/serve.ts",
"check": "ultracite check",
"fix": "ultracite fix"
},
"overrides": {
"protobufjs": ">=7.5.5"
},
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"react": "19.2.4",
"react-dom": "19.2.4",
"next": "16.2.3",
"typescript": "^5.9.3",
"zod": "4.1.12",
"tailwindcss": "^4.1.4",
"autumn-js": "^1.2.8",
"stripe": "^18.2.1",
"dayjs": "^1.11.13",
"elysia": "^1.3.4",
"pino": "^9.7.0",
"@phosphor-icons/react": "latest",
"@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",
"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.4.10",
"@types/bun": "latest",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.3",
"bun-types": "latest",
"ultracite": "^7.4.3",
"turbo": "^2.5.2",
"drizzle-orm": "^0.45.2",
"nanoid": "^5.1.6",
"ua-parser-js": "^2.0.8",
"evlog": "^2.11.1",
"tokenlens": "^2.0.0-alpha.3",
"@tokenlens/models": "1.3.0"
}
}
}