-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.6 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.6 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
{
"name": "tanstack-start",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "npx convex dev --once && concurrently -r npm:dev:web npm:dev:convex",
"dev:web": "vite dev",
"dev:ts": "tsc -b -w",
"dev:convex": "npx convex dev",
"build": "vite build && tsc --noEmit",
"start": "vite start",
"format": "prettier --write .",
"lint": "tsc && eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.687.0",
"@ai-sdk/anthropic": "^2.0.41",
"@ai-sdk/google": "^2.0.29",
"@auth/core": "0.37.0",
"@convex-dev/agent": "^0.2.12",
"@convex-dev/auth": "^0.0.90",
"@convex-dev/presence": "^0.2.1",
"@convex-dev/r2": "^0.8.0",
"@convex-dev/react-query": "^0.0.0-alpha.11",
"@duckdb/node-api": "1.4.1-r.4",
"@mantine/charts": "^8.3.8",
"@mantine/code-highlight": "^8.3.6",
"@mantine/core": "^8.3.6",
"@mantine/dates": "^8.3.6",
"@mantine/dropzone": "^8.3.6",
"@mantine/hooks": "^8.3.6",
"@mantine/modals": "^8.3.6",
"@mantine/notifications": "^8.3.6",
"@mantine/nprogress": "^8.3.6",
"@mantine/spotlight": "^8.3.6",
"@mantine/tiptap": "^8.3.6",
"@mendable/firecrawl-js": "^4.5.0",
"@sentry/tanstackstart-react": "^10.25.0",
"@tabler/icons-react": "^3.35.0",
"@tanstack/react-query": "^5.89.0",
"@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",
"@tiptap/extension-link": "^3.10.1",
"@tiptap/pm": "^3.10.1",
"@tiptap/react": "^3.10.1",
"@tiptap/starter-kit": "^3.10.1",
"ai": "^5.0.87",
"autumn-js": "^0.1.47",
"convex": "^1.28.0",
"dayjs": "^1.11.19",
"motion": "^12.23.24",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"recharts": "^3.4.1",
"simple-statistics": "^7.8.8",
"zod": "^4.1.12"
},
"devDependencies": {
"@convex-dev/eslint-plugin": "^1.0.0",
"@netlify/vite-plugin-tanstack-start": "^1.1.12",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/eslint-config": "^0.3.2",
"@types/node": "^24.9.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"concurrently": "~9.2.1",
"husky": "^9.1.7",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^4.47.0"
}
}