forked from Makisuo/maple
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.29 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
{
"name": "maple",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"lib/*",
"examples/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"docker:build": "COMPOSE_PARALLEL_LIMIT=1 docker compose build",
"docker:up": "COMPOSE_PARALLEL_LIMIT=1 docker compose up --build",
"dev:alerting": "bun --filter=@maple/alerting dev",
"format": "oxfmt && oxlint --ignore-pattern '.context/**' --fix",
"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",
"alchemy:deploy:prd": "bun run alchemy:build-deps && alchemy deploy --stage prd",
"alchemy:deploy:stg": "bun run alchemy:build-deps && alchemy deploy --stage stg",
"alchemy:deploy:pr": "bun run alchemy:build-deps && alchemy deploy --stage pr-${PR_NUMBER}",
"alchemy:destroy": "alchemy destroy",
"alchemy:destroy:stg": "alchemy destroy --stage stg",
"alchemy:destroy:pr": "alchemy destroy --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",
"clickhouse:schema:lint": "bun run ./scripts/lint-clickhouse-schema.ts",
"knip": "knip",
"knip:fix": "knip --fix --allow-remove-files",
"typecheck": "turbo typecheck"
},
"dependencies": {},
"devDependencies": {
"@cloudflare/workers-types": "4.20260603.1",
"@effect/vitest": "4.0.0-beta.85",
"@maple/infra": "workspace:*",
"@tinybirdco/sdk": "catalog:tinybird",
"@types/node": "catalog:tooling",
"alchemy": "^0.93.12",
"knip": "^6.17.1",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"portless": "^0.14.0",
"turbo": "^2.9.18",
"typescript": "catalog:tooling"
},
"packageManager": "[email protected]",
"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.85",
"@effect/language-service": "^0.86.2",
"@effect/platform-bun": "4.0.0-beta.85",
"effect": "4.0.0-beta.85"
},
"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": "^6.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": "2.15.4"
}
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}