-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.3 KB
/
package.json
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
{
"name": "chatdb",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"postinstall": "lefthook install",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:drop": "drizzle-kit drop"
},
"dependencies": {
"@codemirror/lang-sql": "^6.6.4",
"@dagrejs/dagre": "^1.1.2",
"@lezer/highlight": "^1.1.6",
"@lucia-auth/adapter-drizzle": "1.0.7",
"@mantine/form": "^5.10.4",
"@reduxjs/toolkit": "^1.9.5",
"@sentry/nextjs": "^7.95.0",
"@tabler/icons-react": "^2.30.0",
"@tanstack/react-query": "4.36.1",
"@tidbcloud/serverless": "0.1.1",
"@tidbcloud/uikit": "2.0.0-beta.3",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "10.45.2",
"@trpc/server": "^10.45.2",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@uiw/codemirror-themes": "^4.22.1",
"@uiw/react-codemirror": "^4.22.1",
"@vercel/analytics": "1.3.1",
"ahooks": "^3.7.8",
"arctic": "1.9.2",
"drizzle-orm": "0.31.2",
"echarts": "^5.4.2",
"echarts-for-react": "^3.0.2",
"elkjs": "^0.8.2",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.3",
"framer-motion": "^10.12.20",
"json-bigint": "1.0.0",
"lodash-es": "^4.17.21",
"lucia": "3.2.0",
"markdown-to-jsx": "^7.2.1",
"next": "14.2.3",
"oslo": "1.2.1",
"p-retry": "6.2.0",
"react": "18.3.0",
"react-dom": "18.3.0",
"react-redux": "^8.1.1",
"react-table": "^7.8.0",
"react-virtuoso": "^4.6.0",
"react-window": "^1.8.9",
"reactflow": "^11.11.3",
"redux-persist": "6.0.0",
"sass": "^1.66.1",
"sql-formatter": "^12.2.3",
"ts-pattern": "^5.0.1",
"typescript": "5.4.5",
"web-worker": "^1.2.0",
"with-digest-fetch": "^0.7.0",
"wretch": "^2.9.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@types/json-bigint": "1.0.4",
"@types/lodash-es": "^4.17.7",
"@types/react-table": "^7.7.14",
"@types/react-window": "^1.8.5",
"drizzle-kit": "0.23.0",
"lefthook": "^1.6.10",
"mysql2": "3.10.2",
"vitest": "2.0.5"
},
"packageManager": "[email protected]"
}