-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.33 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
{
"name": "fizzy-timer",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"dotenv": "^17.2.2",
"zod": "^4.1.13",
"typescript": "^5",
"convex": "^1.31.2",
"alchemy": "^0.82.1"
}
},
"type": "module",
"scripts": {
"check": "biome check --write .",
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F @fizzy-timer/backend dev",
"dev:setup": "turbo -F @fizzy-timer/backend dev:setup",
"deploy": "turbo -F @fizzy-timer/infra deploy",
"destroy": "turbo -F @fizzy-timer/infra destroy"
},
"dependencies": {
"@effect/schema": "^0.75.5",
"@fizzy-timer/env": "workspace:*",
"@iconify/react": "^6.0.2",
"@tanstack/query-devtools": "^5.92.0",
"@tanstack/react-query": "^5.90.16",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dexie": "^4.2.1",
"dotenv": "catalog:",
"effect": "^3.19.14",
"framer-motion": "^12.23.26",
"tailwind-merge": "^3.4.0",
"xlsx": "^0.18.5",
"zod": "catalog:"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@cloudflare/workers-types": "^4.20251213.0",
"@fizzy-timer/config": "workspace:*",
"turbo": "^2.6.3",
"typescript": "catalog:",
"vite-plugin-pwa": "^1.2.0"
},
"packageManager": "bun@1.3.5"
}