-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.97 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.97 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
{
"name": "open-kyc",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "npx convex dev --once && concurrently -r npm:dev:web npm:dev:convex",
"dev:web": "NODE_OPTIONS='--import ./instrument.server.mjs' vite dev --port 3000",
"dev:ts": "tsc -b -w",
"dev:convex": "npx convex dev",
"build": "vite build && tsc --noEmit && cp instrument.server.mjs .output/server",
"start": "node --import ./.output/server/instrument.server.mjs .output/server/index.mjs",
"format": "prettier --write .",
"lint": "tsc && eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@convex-dev/better-auth": "^0.9.7",
"@convex-dev/crons": "^0.1.9",
"@convex-dev/geospatial": "^0.1.9",
"@convex-dev/migrations": "^0.2.9",
"@convex-dev/react-query": "^0.0.0-alpha.11",
"@convex-dev/resend": "^0.1.13",
"@convex-dev/workflow": "^0.2.7",
"@convex-dev/workpool": "^0.2.19",
"@google/genai": "^1.29.0",
"@heroicons/react": "^2.2.0",
"@mendable/firecrawl-js": "^4.5.0",
"@react-email/components": "^1.0.0",
"@sentry/tanstackstart-react": "^10.23.0",
"@tanstack/react-form": "^1.23.8",
"@tanstack/react-query": "^5.90.7",
"@tanstack/react-router": "^1.132.2",
"@tanstack/react-router-with-query": "^1.130.17",
"@tanstack/react-start": "^1.132.2",
"@tanstack/react-table": "^8.21.3",
"@useautumn/convex": "^0.0.15",
"atmn": "^0.0.28",
"autumn-js": "^0.1.47",
"better-auth": "^1.3.27",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.28.0",
"culori": "^4.0.2",
"date-fns": "^4.1.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.552.0",
"motion": "^12.23.24",
"openai": "^6.8.1",
"qrcode": "^1.5.4",
"react": "^19.1.1",
"react-aria-components": "^1.13.0",
"react-dom": "^19.1.1",
"react-lottie-player": "^2.1.0",
"react-markdown": "^10.1.0",
"react-qr-code": "^2.0.18",
"recharts": "^3.4.1",
"resend": "^6.4.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.1.1",
"tailwindcss-react-aria-components": "^2.0.1",
"uuid": "^13.0.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.14.2",
"@convex-dev/eslint-plugin": "^1.0.0",
"@netlify/vite-plugin-tanstack-start": "^1.1.12",
"@sentry/cli": "^2.58.2",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/eslint-config": "^0.3.2",
"@types/culori": "^4.0.1",
"@types/node": "^24.10.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"concurrently": "~9.2.1",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.13",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^4.47.0"
}
}