forked from sxjeru/CLIProxyAPI-Monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "cliproxyapi-metrics",
"version": "1.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "node scripts/migrate.mjs && next build",
"start": "next start",
"lint": "eslint .",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:backfill:usage-provider-email": "node scripts/backfill-usage-provider-email.mjs"
},
"dependencies": {
"@vercel/analytics": "^1.4.1",
"@vercel/postgres": "^0.10.0",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.575.0",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-day-picker": "9.13.2",
"recharts": "^3.7.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.3.2",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"postcss": "^8.4.38",
"tailwindcss": "^4.2.1",
"typescript": "^5.4.5"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3"
}
}
}