-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "admon",
"version": "0.1.0",
"private": true,
"description": "Verifiable GitHub build history, minted as a Monad NFT.",
"scripts": {
"dev": "next dev --webpack",
"build": "prisma generate && next build --webpack",
"start": "next start",
"lint": "next lint",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"genesis:snapshot": "node scripts/snapshot-genesis.mjs",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@resvg/resvg-js": "^2.6.2",
"@supabase/supabase-js": "^2.103.3",
"@tanstack/react-query": "^5.59.0",
"@vercel/analytics": "^2.0.1",
"@vercel/og": "^0.6.3",
"next": "^16.2.10",
"prisma": "^5.22.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.34.5",
"viem": "^2.21.0",
"wagmi": "^3.7.3"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.20",
"postcss": "8.5.10",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3"
},
"overrides": {
"postcss": "8.5.10"
}
}