forked from SafeVault/vestroll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.42 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.42 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
102
103
104
105
{
"name": "vestroll-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:reset:local": "dropdb --if-exists vestroll_dev && createdb vestroll_dev && npm run db:migrate && npm run db:seed:local",
"test": "vitest run",
"test:watch": "vitest",
"db:seed:local": "psql -d vestroll_dev -f scripts/db/seed-local.sql"
},
"dependencies": {
"@headlessui/react": "^2.2.8",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^5.2.2",
"@next/env": "^16.1.6",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toast": "^1.2.15",
"@reduxjs/toolkit": "^2.9.0",
"@stellar/stellar-sdk": "^14.5.0",
"@tanstack/react-query": "^5.89.0",
"@types/otplib": "^10.0.0",
"@types/qrcode": "^1.5.5",
"@web3-react/core": "^8.2.3",
"@web3-react/injected-connector": "^6.0.7",
"axios": "^1.12.2",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dom-to-image": "^2.6.0",
"drizzle-orm": "^0.45.1",
"ethers": "^6.15.0",
"framer-motion": "^12.23.16",
"google-auth-library": "^10.5.0",
"html2canvas": "^1.4.1",
"jose": "^6.1.3",
"jsonwebtoken": "^9.0.3",
"jspdf": "^3.0.3",
"lucide-react": "^0.544.0",
"next": "15.5.3",
"next-themes": "^0.4.6",
"otplib": "^13.2.1",
"pg": "^8.17.2",
"pnpm": "^10.28.2",
"qrcode": "^1.5.4",
"react": "19.1.0",
"react-day-picker": "^9.11.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.63.0",
"react-inlinesvg": "^4.2.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.9.3",
"react-spinners": "^0.17.0",
"recharts": "^3.2.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-react": "^5.31.1",
"tailwind-merge": "^3.3.1",
"web3": "^4.16.0",
"zod": "^4.1.9",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/dom-to-image": "^2.6.7",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.17",
"@types/pg": "^8.16.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-react": "^5.18.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"drizzle-kit": "^0.31.8",
"eslint": "^9",
"eslint-config-next": "15.5.3",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a"
}