-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 5.27 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 5.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
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
{
"name": "maple",
"private": true,
"workspaces": [
"apps/*",
"!apps/slack-agent",
"packages/*",
"lib/*",
"examples/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"prepare": "effect-tsgo patch --no-typescript --oxlint",
"dev:essentials": "turbo dev --filter=@maple/api --filter=@maple/alerting --filter=@maple/ingest --filter=@maple/web --filter=@maple/scraper --filter=@maple/electric-sync",
"docker:build": "COMPOSE_PARALLEL_LIMIT=1 docker compose build",
"docker:up": "COMPOSE_PARALLEL_LIMIT=1 docker compose up --build",
"db:up": "docker compose up -d postgres electric",
"ch:up": "docker compose -f docker-compose.development.yml up -d clickhouse",
"ch:down": "docker compose -f docker-compose.development.yml stop clickhouse",
"ch:test": "CLICKHOUSE_E2E=1 CLICKHOUSE_E2E_URL=http://127.0.0.1:8123 bun run --filter=@maple/api test -- src/services/warehouse/sql-catalog.clickhouse.e2e.test.ts src/services/warehouse/WarehouseQueryService.clickhouse.e2e.test.ts",
"db:migrate:local": "DATABASE_URL=postgres://maple:maple@localhost:5499/maple bun run --cwd packages/db db:migrate",
"migrate:prod": "bun run --cwd packages/db ps:apply-schema main",
"dev:alerting": "bun --filter=@maple/alerting dev",
"format": "oxfmt && oxlint --ignore-pattern '.context/**' --fix",
"lint:effect-boundaries": "oxlint -c .oxlintrc.effect-boundaries.json apps/api/src/mcp/tools apps/api/src/mcp/dispatcher.ts apps/api/src/mcp/lib/query-warehouse.ts apps/api/src/mcp/server.ts apps/api/src/chat/tools.ts apps/api/src/chat/loop/types.ts apps/api/src/chat/loop/turn.ts apps/api/src/chat/turn-runner.ts apps/api/src/internal-rpc.ts apps/api/src/workflows/agent-pass.ts apps/api/src/routes/v1/chat.http.ts apps/api/src/worker.ts",
"alchemy:build-deps": "turbo build --filter=@maple-dev/effect-sdk --filter=@maple-dev/browser --filter=@maple-dev/clickhouse-builder",
"alchemy:deploy": "bun run alchemy:build-deps && alchemy deploy --yes",
"alchemy:deploy:prd": "bun run alchemy:build-deps && alchemy deploy --yes --adopt --stage prd",
"alchemy:deploy:stg": "bun run alchemy:build-deps && alchemy deploy --yes --adopt --stage stg",
"alchemy:deploy:pr": "bun run alchemy:build-deps && alchemy deploy --yes --adopt --stage pr-${PR_NUMBER}",
"alchemy:destroy": "alchemy destroy --yes",
"alchemy:destroy:stg": "alchemy destroy --yes --stage stg",
"alchemy:destroy:pr": "alchemy destroy --yes --stage pr-${PR_NUMBER}",
"test": "turbo test",
"tinybird:manifest": "bun run ./scripts/generate-tinybird-project-manifest.ts",
"tinybird:manifest:check": "bun run ./scripts/generate-tinybird-project-manifest.ts --check",
"clickhouse:schema": "bun run ./scripts/generate-clickhouse-schema.ts && bun run ./scripts/generate-clickhouse-schema-sql.ts && bun run ./scripts/generate-clickhouse-insert-mappings.ts && bun run ./scripts/lint-clickhouse-schema.ts",
"clickhouse:schema:check": "bun run ./scripts/generate-clickhouse-schema.ts --check && bun run ./scripts/generate-clickhouse-schema-sql.ts --check && bun run ./scripts/generate-clickhouse-insert-mappings.ts --check && bun run ./scripts/lint-clickhouse-schema.ts && bun run ./scripts/check-local-schema-manifest.ts",
"clickhouse:schema:lint": "bun run ./scripts/lint-clickhouse-schema.ts",
"check:tokens": "bun run ./scripts/check-token-drift.ts",
"llm:sync": "bun run ./scripts/sync-llm-upstream.ts",
"llm:sync:check": "bun run ./scripts/sync-llm-upstream.ts --check",
"knip": "knip",
"knip:fix": "knip --fix --allow-remove-files",
"typecheck": "turbo typecheck && tsc -p tsconfig.alchemy.json"
},
"dependencies": {},
"devDependencies": {
"@cloudflare/workers-types": "4.20260603.1",
"@effect/platform-node": "4.0.0-beta.105",
"@effect/tsgo": "0.32.1",
"@effect/vitest": "4.0.0-beta.105",
"@maple/infra": "workspace:*",
"@tinybirdco/sdk": "catalog:tinybird",
"@types/node": "catalog:tooling",
"alchemy": "2.0.0-beta.70",
"effect": "catalog:effect",
"knip": "^6.17.1",
"oxfmt": "^0.55.0",
"oxlint": "1.76.0",
"oxlint-tsgolint": "7.0.2001",
"portless": "^0.14.0",
"turbo": "^2.9.18",
"typescript": "catalog:tooling"
},
"overrides": {
"@effect/sql-d1": "4.0.0-beta.105"
},
"packageManager": "bun@1.3.11",
"catalog": {
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"catalogs": {
"clickhouse": {
"@clickhouse/client-web": "^1.21.0"
},
"effect": {
"@effect/atom-react": "4.0.0-beta.105",
"@effect/language-service": "^0.87.2",
"@effect/platform-bun": "4.0.0-beta.105",
"effect": "4.0.0-beta.105"
},
"react": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"tailwind": {
"@tailwindcss/vite": "^4.3.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0"
},
"tinybird": {
"@tinybirdco/sdk": "0.0.78"
},
"tooling": {
"@types/node": "^22.10.2",
"typescript": "^7.0.2"
},
"ui": {
"@base-ui/react": "^1.6.0",
"@xyflow/react": "^12.11.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"recharts": "^3.9.0"
}
},
"patchedDependencies": {
"@effect/vitest@4.0.0-beta.105": "patches/@effect%2Fvitest@4.0.0-beta.105.patch",
"alchemy@2.0.0-beta.70": "patches/alchemy@2.0.0-beta.70.patch",
"effect@4.0.0-beta.105": "patches/effect@4.0.0-beta.105.patch"
}
}