-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.61 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.61 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
{
"name": "worktracking-app",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"build:staging": "CLOUDFLARE_ENV=staging react-router build",
"build:prod": "CLOUDFLARE_ENV=production react-router build",
"deploy": "bun run build && wrangler deploy",
"deploy:staging": "bun run build:staging && wrangler deploy",
"deploy:prod": "bun run build:prod && wrangler deploy",
"dev": "react-router dev",
"preview": "bun run build && vite preview",
"start": "wrangler dev",
"check": "bun cf-typegen && react-router typegen && bun run biome:check && bunx tsc --noEmit -p ./tsconfig.cloudflare.json",
"biome:check": "biome check --fix && biome format --write",
"cf-typegen": "wrangler types --env-interface CloudflareBindings",
"tail:prod": "wrangler tail -e production",
"tail:staging": "wrangler tail -e staging",
"convex:dev": "convex dev",
"convex:setup-env": "bash ./setup_convex_env.sh",
"convex:deploy": "convex deploy",
"prepare": "husky"
},
"dependencies": {
"@clerk/react-router": "^2.1.6",
"@hookform/resolvers": "^5.1.1",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@react-router/cloudflare": "^7.4.1",
"@react-router/fs-routes": "^7.4.1",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.80.7",
"@tanstack/react-query-devtools": "^5.80.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.17.4",
"crypto": "^1.0.1",
"dotenv": "^16.4.7",
"framer-motion": "^12.6.3",
"hono": "^4.7.5",
"isbot": "^5.1.17",
"lucide-react": "^0.486.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.58.0",
"react-router": "^7.3.0",
"react-router-dom": "^7.4.1",
"resend": "^4.5.1",
"sonner": "^2.0.5",
"superjson": "^2.2.2",
"tailwind-merge": "^3.1.0",
"tw-animate-css": "^1.2.5",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^3.25.62"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cloudflare/vite-plugin": "^1.3.1",
"@react-router/dev": "^7.6.1",
"@tailwindcss/vite": "^4.0.0",
"@types/bun": "^1.2.8",
"@types/node": "^22.13.17",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"husky": "^9.1.7",
"stream-browserify": "^3.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"wrangler": "^4.34.0"
}
}