-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.96 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.96 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
111
112
113
114
115
116
117
118
119
120
121
{
"dependencies": {
"@emnapi/core": "^1.4.3",
"@emnapi/runtime": "^1.4.3",
"@emnapi/wasi-threads": "^1.0.2",
"@opentelemetry/exporter-trace-otlp-http": "0.203.0",
"@opentelemetry/sdk-trace-web": "2.0.1",
"@tybys/wasm-util": "^0.9.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@turbo/gen": "2.5.6",
"@types/bun": "latest",
"@typescript/native-preview": "7.0.0-dev.20250822.1",
"jscodeshift": "^17.3.0",
"turbo": "2.5.6"
},
"name": "openfaith",
"packageManager": "bun@1.2.20",
"patchedDependencies": {
"@rocicorp/zero@0.23.2025090100": "patches/@rocicorp%2Fzero@0.23.2025090100.patch",
"better-auth@1.3.17": "patches/better-auth@1.3.17.patch"
},
"private": true,
"resolutions": {
"@effect/cluster": "0.48.5",
"@effect/experimental": "0.54.6",
"@effect/opentelemetry": "0.56.6",
"@effect/platform": "0.90.9",
"@effect/platform-bun": "0.79.0",
"@effect/platform-node-shared": "0.49.0",
"@effect/rpc": "0.69.2",
"@effect/sql": "0.44.2",
"@effect/sql-drizzle": "0.43.0",
"@effect/sql-pg": "0.45.1",
"@effect/workflow": "0.9.5",
"effect": "3.17.13"
},
"scripts": {
"build": "turbo run build --ui=stream",
"check": "turbo run format lint typecheck test --ui=stream",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"db:generate": "bun run --filter '@openfaith/db' db:generate",
"db:migrate": "bun run --filter '@openfaith/db' db:migrate",
"dev": "turbo run infra dev --continue",
"dev:prod": "turbo run dev --continue",
"format": "turbo run format --ui=stream --continue",
"format:fix": "turbo run format --ui=stream --continue -- --write --unsafe",
"infra": "turbo run infra --continue",
"lint": "turbo run lint --continue --ui=stream -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue --ui=stream -- --fix --cache --cache-location .cache/.eslintcache",
"server": "bun run --filter '@openfaith/server' start",
"test": "TESTCONTAINERS_RYUK_DISABLED=true turbo run test --ui=stream",
"typecheck": "turbo run typecheck --ui=stream",
"ui-add": "turbo run ui-add"
},
"trustedDependencies": [
"@rocicorp/zero-sqlite3"
],
"type": "module",
"workspaces": {
"catalog": {
"@ai-sdk/anthropic": "2.0.34",
"@ai-sdk/react": "2.0.76",
"@effect-atom/atom-react": "0.3.0",
"@effect/cluster": "0.48.5",
"@effect/opentelemetry": "0.56.6",
"@effect/platform": "0.90.9",
"@effect/platform-bun": "0.79.0",
"@effect/platform-node": "0.96.1",
"@effect/rpc": "0.69.2",
"@effect/sql": "0.44.2",
"@effect/sql-drizzle": "0.43.0",
"@effect/sql-pg": "0.45.1",
"@effect/workflow": "0.9.5",
"@opentelemetry/sdk-trace-base": "2.0.1",
"@rocicorp/zero": "0.23.2025090100",
"@tanstack/react-form": "1.23.7",
"@tanstack/react-router": "1.131.44",
"@tanstack/react-table": "8.21.3",
"@tanstack/react-virtual": "3.13.12",
"@tanstack/table-core": "8.21.3",
"@testcontainers/postgresql": "11.3.2",
"@types/qs": "6.14.0",
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"ai": "5.0.76",
"better-auth": "1.3.17",
"date-fns": "4.1.0",
"drizzle-kit": "0.31.4",
"drizzle-orm": "0.44.4",
"effect": "3.17.13",
"input-otp": "1.4.2",
"jose": "6.0.13",
"jotai": "2.12.5",
"next-themes": "0.4.6",
"nuqs": "2.4.3",
"qs": "6.14.0",
"radix-ui": "1.4.3",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-hotkeys-hook": "5.1.0",
"resend": "6.2.0",
"superjson": "2.2.2",
"tailwindcss": "4.1.12",
"testcontainers": "11.5.1",
"typeid-js": "1.2.0",
"typescript": "5.9.2",
"zod": "4.1.12"
},
"packages": [
"adapters/*",
"apps/*",
"backend/*",
"infra/*",
"packages/*",
"tooling/*"
]
}
}