-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.28 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.28 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
{
"name": "nextjs-prototype",
"version": "0.1.0",
"private": true,
"type": "module",
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@prisma/adapter-pg": "^7.4.0",
"@prisma/client": "^7.4.0",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-popover": "^1.1.11",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.5",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toast": "^1.2.5",
"@radix-ui/react-tooltip": "^1.1.7",
"@supabase/supabase-js": "^2.53.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^3.6.0",
"dotenv-expand": "^12.0.3",
"jose": "^6.1.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.474.0",
"luxon": "^3.7.1",
"next": "^15.2.4",
"pg": "^8.18.0",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"react-phone-number-input": "^3.4.12",
"swr": "^2.3.3",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"winston": "^3.17.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/create-config": "^1.10.0",
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^15.5.3",
"@playwright/test": "^1.53.2",
"@types/lodash.debounce": "^4.0.9",
"@types/luxon": "^3.7.1",
"@types/node": "^20.17.19",
"@types/pg": "^8.16.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-phone-number-input": "^3.0.17",
"@types/xml2js": "^0.4.14",
"eslint": "^9.39.3",
"eslint-config-next": "^15.4.5",
"playwright": "^1.54.2",
"postcss": "^8",
"prisma": "^7.4.0",
"tailwindcss": "^3.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"overrides": {
"hono": "^4.12.0",
"lodash": "^4.17.21"
}
}