-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 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
{
"name": "cliproxyapi-metrics",
"version": "1.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "node scripts/migrate.mjs && next build",
"build-only": "next build",
"start": "next start",
"lint": "eslint .",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@vercel/analytics": "^1.4.1",
"@vercel/postgres": "^0.10.0",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.576.0",
"next": "16.1.6",
"pg": "^8.19.0",
"react": "19.2.4",
"react-day-picker": "9.14.0",
"react-dom": "19.2.4",
"recharts": "^3.7.0",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.3.3",
"@types/pg": "^8.18.0",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"@types/ws": "^8.18.1",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"typescript": "^5.4.5"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3"
}
}
}