-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "horizon",
"version": "0.0.1",
"packageManager": "bun@1.3.6",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:web": "bun --cwd apps/web dev",
"dev:agent": "cd apps/agent && bunx @langchain/langgraph-cli dev",
"lint": "ultracite check",
"lint:fix": "ultracite fix",
"format": "ultracite fix",
"docker:dev": "docker compose up --build",
"docker:prod": "docker compose -f docker-compose.prod.yaml up --build -d",
"docker:down": "docker compose down",
"clean": "turbo clean && rm -rf node_modules",
"typecheck": "turbo typecheck",
"check": "ultracite check",
"fix": "ultracite fix"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@horizon/typescript-config": "workspace:*",
"baseline-browser-mapping": "latest",
"lefthook": "^2.1.4",
"turbo": "^2.8.20",
"typescript": "5.7.3",
"ultracite": "7.1.5"
},
"trustedDependencies": [
"esbuild"
],
"engines": {
"node": ">=20"
},
"dependencies": {},
"resolutions": {
"@lezer/highlight": "^1.2.3",
"@codemirror/state": "6.5.4",
"@codemirror/view": "6.39.6",
"@codemirror/language": "6.12.1",
"@lezer/common": "^1.5.1"
}
}