-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.71 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.71 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
{
"name": "c3chat",
"private": true,
"version": "0.0.0",
"type": "module",
"cpu": ["x64", "arm64"],
"os": ["darwin", "linux", "win32"],
"scripts": {
"dev": "bun run dev:frontend & bun run dev:backend",
"dev:frontend": "bunx --bun vite --open",
"dev:backend": "bunx convex dev",
"test": "bunx vitest",
"test:run": "bunx vitest run",
"test:ui": "bunx vitest --ui",
"test:coverage": "bunx vitest run --coverage",
"build": "bunx --bun vite build",
"preview": "bunx --bun vite preview",
"lint": "tsc -p convex -noEmit --pretty false && tsc -p . -noEmit --pretty false && bunx convex dev --once && bunx --bun vite build"
},
"dependencies": {
"@convex-dev/auth": "^0.0.80",
"@google/genai": "1.5.1",
"@lobehub/icons": "^2.4.0",
"@reown/appkit": "^1.7.10",
"@reown/appkit-adapter-wagmi": "^1.7.10",
"@reown/walletkit": "^1.2.7",
"@tailwindcss/postcss": "^4.1.8",
"@tanstack/react-query": "^5.80.10",
"@tanstack/react-virtual": "^3.13.10",
"@upstash/redis": "^1.35.0",
"@walletconnect/core": "^2.21.3",
"@walletconnect/utils": "^2.21.3",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"convex": "^1.24.2",
"lucide-react": "^0.515.0",
"nanoid": "^5.0.9",
"openai": "^5.2.0",
"prismjs": "^1.29.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.6.2",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.0",
"sonner": "^2.0.3",
"tailwind-merge": "^3.1.0",
"tw-animate-css": "^1.3.4",
"viem": "^2.31.3",
"wagmi": "^2.15.6"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.10",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.1.7",
"@types/react-dom": "^19.1.6",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "~10",
"dotenv": "^16.4.7",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"jsdom": "^26.1.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.53.1",
"postcss": "~8",
"prettier": "^3.5.3",
"tailwindcss": "^4.1.8",
"typescript": "^5.8.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vitest": "^3.2.3"
},
"trustedDependencies": [
"@tailwindcss/oxide"
],
"overrides": {
"rollup": "4.28.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.28.1",
"@tailwindcss/oxide-linux-x64-gnu": "4.1.8",
"lightningcss-linux-x64-gnu": "1.28.2"
}
}