-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
{
"name": "raidguild-accounting",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev",
"dev:proxy": "next dev -H 127.0.0.1 -p 3001",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install chromium",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:reset:local": "node scripts/reset-local-db.mjs",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@neondatabase/serverless": "^1.1.0",
"@tanstack/react-query": "^5.100.14",
"@vercel/analytics": "^2.0.1",
"@x402/core": "^2.17.0",
"@x402/evm": "^2.17.0",
"@x402/next": "^2.17.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"exceljs": "^4.4.0",
"iron-session": "^8.0.4",
"lucide-react": "^1.17.0",
"next": "16.2.6",
"pg": "^8.18.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"server-only": "^0.0.1",
"siwe": "^3.0.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"viem": "^2.51.3",
"wagmi": "^3.6.16"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.18.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}