-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "raidguild-forge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"db:migrate": "node scripts/migrate.mjs",
"db:reset": "scripts/reset-local-db.sh",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@neondatabase/serverless": "^1.1.0",
"@radix-ui/react-slot": "^1.2.4",
"@sendgrid/mail": "^8.1.6",
"@tanstack/react-query": "^5.101.0",
"@vercel/analytics": "^2.0.1",
"@x402/core": "^2.14.0",
"@x402/evm": "^2.14.0",
"@x402/fetch": "^2.14.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.17.0",
"next": "^16.2.6",
"pg": "^8.21.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.6.0",
"viem": "^2.52.0",
"wagmi": "^3.6.16"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^25.9.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"eslint": "^9.0.0",
"eslint-config-next": "^16.2.6",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
}
}