-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "clairvoyant",
"version": "0.1.0",
"type": "module",
"private": true,
"packageManager": "bun@1.3.10",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"dev:stream": "turbo run dev --ui=stream",
"build": "turbo run build",
"lint": "turbo run lint",
"app:dev": "turbo run dev --filter=@clairvoyant/application",
"api:dev": "turbo run dev --filter=@clairvoyant/api",
"web:dev": "turbo run dev --filter=@clairvoyant/web",
"web:build": "turbo run build --filter=@clairvoyant/web",
"database": "npx convex dev",
"check": "bunx biome check .",
"format": "bunx biome format --write .",
"test": "turbo run test",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules .turbo apps/*/.turbo packages/*/.turbo apps/*/dist packages/*/dist apps/*/build packages/*/build packages/convex/_generated bun.lock",
"clean:install": "bun run clean && bun install",
"ngrok": "turbo run dev --filter=@clairvoyant/ngrok",
"prepare": "husky"
},
"dependencies": {
"convex": "^1.32.0",
"elysia": "^1.4.26"
},
"overrides": {
"elysia": "$elysia",
"esbuild": "0.25.12"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css}": [
"bunx biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@boundaryml/baml": "0.215.0",
"@types/bun": "latest",
"@types/node": "^24.10.15",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tsx": "^4.21.0",
"turbo": "^2.8.11",
"typescript": "^5.9.3"
}
}