-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.23 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.23 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
{
"name": "convex-monorepo",
"license": "MIT",
"private": true,
"scripts": {
"i": "bun install",
"setup:context": "bun scripts/setup-context.ts",
"ci": "bun run lint && bun run typecheck && bun run test",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@packages/main-site",
"dev:with:dbs": "bun scripts/start-dbs.ts && turbo run dev",
"build": "turbo run build",
"typecheck": "turbo run typecheck --filter='!@packages/convex-test'",
"typecheck:slow": "turbo run typecheck:slow --filter='!@packages/convex-test'",
"typecheck:tsgo": "tsgo --build",
"typecheck:tsgo:watch": "tsgo --build --watch",
"test": "turbo run test --filter='!@packages/convex-test'",
"test:watch": "turbo run test:watch --filter='!@packages/convex-test'",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"fix:safe": "biome check . --write",
"fix:unsafe": "biome check . --write --unsafe",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"format": "biome format --write .",
"knip": "bunx knip",
"prepare": "husky",
"env:pull:prod": "vercel env pull .env.production --environment production",
"otel:process:console": "bun scripts/otel-console-span-processor.ts",
"test:otel:e2e": "turbo run test --filter='@packages/confect' --filter='@packages/database' --filter='@packages/ui' --filter='@packages/observability'",
"test:otel:convex:dev": "bun run test:otel:convex:local",
"test:otel:convex:local": "bun scripts/otel-convex-dev-smoke.ts",
"check:github": "bun scripts/check-github-config.ts"
},
"devDependencies": {
"@biomejs/biome": "2.1.4",
"@packages/observability": "workspace:*",
"@typescript/native-preview": "^7.0.0-dev.20260102.1",
"convex": "^1.32.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"puppeteer-core": "^24.37.4",
"turbo": "^2.6.1",
"typescript": "catalog:"
},
"engines": {
"node": ">=18.0.0"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"effect": "^3.19.8",
"@effect/platform": "^0.93.6",
"@effect/rpc": "^0.72.2",
"@effect/vitest": "^0.27.0",
"@effect-atom/atom": "^0.4.11",
"@effect-atom/atom-react": "^0.4.4",
"convex": "^1.32.0",
"better-auth": "^1.4.7",
"@convex-dev/better-auth": "^0.10.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"next": "^16.1.6",
"vitest": "^3.2.4",
"tailwindcss": "^4.1.11",
"@tailwindcss/postcss": "^4.1.11",
"typescript": "^5.9.2",
"nuqs": "2.7.3",
"@edge-runtime/vm": "^5.0.0",
"@types/node": "^20.19.9",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"lucide-react": "^0.553.0",
"postcss": "^8.5.3",
"zod": "^3.25.76"
}
},
"packageManager": "bun@1.3.3",
"patchedDependencies": {
"convex-helpers@0.1.104": "patches/convex-helpers@0.1.104.patch",
"@convex-dev/better-auth@0.10.9": "patches/@convex-dev%2Fbetter-auth@0.10.9.patch"
},
"overrides": {
"@modelcontextprotocol/sdk": "1.17.5",
"import-in-the-middle": "^2.0.0",
"require-in-the-middle": "^8.0.1",
"minimatch": "^10.2.2",
"path-to-regexp": "^6.3.0",
"hono": "^4.12.0",
"cookie": "^0.7.2",
"effect": "^3.19.8",
"@effect/platform": "^0.93.6"
},
"lint-staged": {
"*": [
"biome check --write"
]
},
"dependencies": {
"@pierre/diffs": "^1.0.11"
}
}