-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.04 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "docchainv2",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:drop": "npx drizzle-kit drop",
"db:generate": "npx drizzle-kit generate",
"db:migrate": "npx drizzle-kit migrate",
"db:studio": "npx drizzle-kit studio",
"run:test": "tsx app/testfiles/test.ts",
"seed:addresses": "npx tsx scripts/seedaddresses.ts"
},
"dependencies": {
"@auth/upstash-redis-adapter": "^2.11.0",
"@emailjs/browser": "^4.4.1",
"@hookform/resolvers": "^3.10.0",
"@neondatabase/serverless": "^1.0.0",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.6",
"@react-pdf/renderer": "^4.3.1",
"@tanstack/react-table": "^8.21.3",
"@upstash/ratelimit": "^2.0.6",
"@upstash/redis": "^1.35.4",
"@upstash/workflow": "^0.2.13",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv-expand": "^12.0.2",
"drizzle-orm": "^0.43.1",
"ethers": "^6.14.1",
"fs": "^0.0.1-security",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.12.1",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"jspdf": "^3.0.3",
"jspdf-autotable": "^5.0.2",
"lucide-react": "^0.485.0",
"next": "15.2.8",
"next-auth": "^5.0.0-beta.27",
"next-themes": "^0.4.6",
"nodemailer": "^6.10.1",
"pagedjs": "^0.4.3",
"pg": "^8.16.3",
"playwright": "^1.55.1",
"progress": "^2.0.3",
"puppeteer": "^24.22.3",
"qr-scanner": "^1.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.62.0",
"shadcn": "^3.5.0",
"sonner": "^2.0.3",
"tailwind-merge": "^3.0.2",
"tw-animate-css": "^1.2.5",
"xlsx": "^0.18.5",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/js-cookie": "^3.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.14",
"@types/nodemailer": "^7.0.2",
"@types/qrcode": "^1.5.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"drizzle-kit": "^0.31.5",
"eslint": "^9.37.0",
"eslint-config-next": "15.2.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.6.2",
"qrcode": "^1.5.4",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.9.3"
}
}