-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.38 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
106
107
108
109
110
111
112
113
114
115
116
{
"name": "bewater-builder",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier . -w",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@clerk/nextjs": "^6.1.2",
"@clerk/themes": "^1.7.17",
"@hookform/resolvers": "^3.6.0",
"@hugocxl/react-to-image": "^0.0.9",
"@prisma/client": "^6.8.2",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@reown/appkit": "^1.7.6",
"@reown/appkit-adapter-wagmi": "^1.7.6",
"@t3-oss/env-nextjs": "^0.7.3",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-query": "^4.36.1",
"@vercel/og": "^0.6.2",
"accept-language": "^3.0.18",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compressorjs": "^1.2.1",
"csv-parse": "^5.6.0",
"currency-symbol-map": "^5.1.0",
"date-fns": "^2.30.0",
"dompurify": "^3.2.4",
"dotenv": "^16.4.5",
"echarts": "^5.5.1",
"html-to-image": "^1.11.11",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-resources-to-backend": "^1.2.1",
"js-cookie": "^3.0.5",
"js-file-downloader": "^1.1.25",
"lodash": "^4.17.21",
"lucide-react": "^0.482.0",
"markdown-to-jsx": "^7.4.7",
"next": "^14.2.4",
"numeral": "^2.0.6",
"pino-pretty": "^10.3.1",
"prisma": "^6.8.2",
"randomstring": "^1.3.0",
"react": "^18.3.1",
"react-datepicker": "^4.25.0",
"react-dom": "^18.3.1",
"react-fast-marquee": "^1.6.4",
"react-hook-form": "^7.52.0",
"react-i18next": "^14.1.2",
"react-markdown": "^10.1.0",
"react-select": "^5.8.0",
"react-sortablejs": "^6.1.4",
"react-wrap-balancer": "^1.1.1",
"remeda": "^1.61.0",
"sonner": "^2.0.3",
"sortablejs": "^1.15.2",
"tailwind-merge": "^2.5.3",
"viem": "^2.30.0",
"wagmi": "^2.15.4",
"xlsx": "^0.18.5",
"yet-another-react-lightbox": "^3.20.1",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.6",
"@types/node": "^20.14.9",
"@types/numeral": "^2.0.5",
"@types/randomstring": "^1.3.0",
"@types/react": "^18.3.3",
"@types/react-datepicker": "^4.19.6",
"@types/react-dom": "^18.3.0",
"@types/sortablejs": "^1.15.8",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"postcss": "^8.4.39",
"postcss-import": "^15.1.0",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@clerk/shared"
],
"onlyBuiltDependencies": [
"@clerk/shared"
]
}
}