-
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.36 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.36 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": "algomon-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"cf:build": "npx @opennextjs/cloudflare build",
"cf:preview": "npm run cf:build && npx wrangler dev",
"cf:deploy": "npm run cf:build && npx wrangler deploy",
"db:generate": "drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply algomon --local",
"db:migrate": "wrangler d1 migrations apply algomon",
"db:studio": "drizzle-kit studio",
"lint": "next lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@kylealanjeffrey/badge": "^0.0.2",
"@tanstack/react-query": "^5.62.7",
"@visx/group": "^3.3.0",
"drizzle-orm": "^0.36.4",
"framer-motion": "^11.13.1",
"geist": "^1.3.0",
"next": "^15.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-force-graph-2d": "^1.29.1",
"recharts": "^3.8.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241224.0",
"@opennextjs/cloudflare": "^1.17.1",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.27",
"drizzle-kit": "^0.28.1",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"wrangler": "^4.75.0"
}
}