-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.46 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.46 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
{
"name": "maple",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"lib/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev --ui=tui",
"dev:portless": "bun run scripts/portless-dev.ts",
"dev:alerting": "bun --filter=@maple/alerting dev",
"alchemy:build-deps": "turbo build --filter=@maple-dev/effect-sdk",
"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",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20260414.1",
"@effect/vitest": "4.0.0-beta.52",
"@maple/db": "workspace:*",
"@maple/infra": "workspace:*",
"@tinybirdco/sdk": "catalog:tinybird",
"@types/node": "catalog:tooling",
"alchemy": "^0.91.2",
"portless": "^0.10.3",
"turbo": "^2.9.3",
"typescript": "catalog:tooling"
},
"packageManager": "bun@1.3.11",
"catalog": {
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"catalogs": {
"effect": {
"@effect/atom-react": "4.0.0-beta.52",
"@effect/language-service": "^0.85.1",
"@effect/opentelemetry": "4.0.0-beta.52",
"@effect/platform-bun": "4.0.0-beta.52",
"effect": "4.0.0-beta.52"
},
"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.2.2",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0"
},
"tinybird": {
"@tinybirdco/sdk": "0.0.64"
},
"tooling": {
"@types/node": "^22.10.2",
"typescript": "^6.0.2"
},
"ui": {
"@base-ui/react": "^1.3.0",
"@xyflow/react": "^12.10.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"recharts": "2.15.4"
}
},
"dependencies": {}
}