-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.93 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.93 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
{
"name": "ybudget",
"version": "1.0.0",
"private": true,
"scripts": {
"dev:stripe": "next dev --turbopack & npx convex dev & stripe listen --forward-to https://standing-firefly-934.convex.site/stripe",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"lint": "biome lint --write",
"test": "vitest run && pnpm exec playwright test",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.86",
"@auth/core": "^0.37.4",
"@convex-dev/agent": "^0.3.2",
"@convex-dev/aggregate": "^0.1.25",
"@convex-dev/auth": "^0.0.90",
"@convex-dev/polar": "^0.6.4",
"@convex-dev/resend": "^0.1.13",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-table": "^8.21.3",
"@types/papaparse": "^5.5.1",
"@types/react-signature-canvas": "^1.0.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"convex": "^1.30.0",
"convex-helpers": "^0.1.106",
"date-fns": "^4.1.0",
"eslint-config-next": "^16.0.7",
"framer-motion": "^12.23.25",
"geist": "^1.5.1",
"heic2any": "^0.0.4",
"lucide-react": "^0.546.0",
"next": "16.0.7",
"onborda": "^1.2.5",
"papaparse": "^5.5.3",
"pdf-lib": "^1.17.1",
"pnpm": "^10.24.0",
"posthog-js": "^1.301.0",
"posthog-node": "^4.18.0",
"prettier": "^3.7.4",
"qrcode.react": "^4.2.0",
"react": "19.2.1",
"react-csv": "^2.2.2",
"react-day-picker": "^9.11.3",
"react-dom": "19.2.1",
"react-hot-toast": "^2.6.0",
"react-papaparse": "^4.4.0",
"react-signature-canvas": "1.1.0-alpha.2",
"recharts": "2.15.4",
"stripe": "^19.3.1",
"tailwind-merge": "^3.4.0",
"uuid": "^13.0.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "2.3.3",
"@edge-runtime/vm": "^5.0.0",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^20.19.25",
"@types/react": "^19.2.7",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "4.0.15",
"convex-test": "^0.0.41",
"dotenv": "^17.2.3",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^4.0.15"
}
}