-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.03 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.03 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
{
"name": "midday",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --parallel",
"test": "turbo test --parallel",
"start:dashboard": "turbo start --filter=@midday/dashboard",
"start:website": "turbo start --filter=@midday/website",
"dev:api": "turbo dev --filter=@midday/api",
"dev:dashboard": "turbo dev --filter=@midday/dashboard",
"build:dashboard": "turbo build --filter=@midday/dashboard",
"dev:website": "turbo dev --filter=@midday/website ",
"dev:desktop": "turbo dev --filter=@midday/desktop",
"cli": "bun run packages/cli/bin/midday.ts",
"jobs:dashboard": "turbo jobs --filter=@midday/jobs",
"format": "biome format --write .",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"typecheck": "turbo typecheck"
},
"packageManager": "bun@1.3.11",
"catalog": {
"@ai-sdk/google": "^3.0.53",
"@ai-sdk/openai": "3.0.48",
"@date-fns/tz": "^1.4.1",
"@fast-csv/format": "5.0.5",
"@react-pdf/renderer": "^4.3.2",
"@sentry/bun": "^10.46.0",
"@sindresorhus/slugify": "^3.0.0",
"@trigger.dev/sdk": "4.4.3",
"ai": "6.0.141",
"bullmq": "^5.71.1",
"camelcase-keys": "^10.0.2",
"change-case": "^5.4.4",
"date-fns": "^4.1.0",
"heic-convert": "1.2.4",
"hono": "4.12.9",
"jose": "^6.2.2",
"nanoid": "^5.1.7",
"node-xlsx": "^0.24.0",
"papaparse": "^5.5.3",
"pino": "^10.3.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"resend": "^6.9.4",
"sharp": "0.34.5",
"typescript": "^6.0.2",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"trustedDependencies": [
"@biomejs/biome",
"@depot/cli",
"@sentry/cli",
"core-js",
"protobufjs"
],
"devDependencies": {
"@biomejs/biome": "2.4.10",
"turbo": "2.9.3",
"typescript": "^6.0.2"
},
"dependencies": {
"toolpick": "^0.4.0",
"use-stick-to-bottom": "^1.1.3"
}
}