-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 3.2 KB
/
package.json
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
{
"name": "hipnode",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ts-node": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\"",
"postinstall": "prisma generate"
},
"dependencies": {
"@clerk/nextjs": "^4.29.6",
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
"@hookform/resolvers": "^3.3.4",
"@lexical/code": "^0.13.1",
"@lexical/link": "^0.13.1",
"@lexical/list": "^0.13.1",
"@lexical/markdown": "^0.13.1",
"@lexical/react": "^0.13.1",
"@lexical/selection": "^0.13.1",
"@plaiceholder/next": "^3.0.0",
"@prisma/client": "^5.21.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/components": "^0.0.14",
"@supabase/supabase-js": "^2.39.3",
"@types/uuid": "^9.0.8",
"ably": "^1.2.48",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.1",
"date-fns": "^3.3.1",
"emoji-mart": "^5.5.2",
"framer-motion": "^11.0.3",
"isomorphic-dompurify": "^2.3.0",
"lexical": "^0.13.1",
"lucide-react": "^0.323.0",
"next": "^14.1.0",
"plaiceholder": "^3.0.0",
"pluralize": "^8.0.0",
"prettier": "^3.2.5",
"prisma": "^5.21.1",
"query-string": "^8.2.0",
"react": "^18",
"react-audio-voice-recorder": "^2.2.0",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-icons": "^5.0.1",
"react-intersection-observer": "^9.7.0",
"react-select": "^5.8.0",
"react-share": "^5.0.3",
"react-tag-autocomplete": "^7.1.0",
"react-textarea-autosize": "^8.5.3",
"resend": "^3.1.0",
"sharp": "^0.33.2",
"svix": "^1.16.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"use-places-autocomplete": "^4.0.1",
"usehooks-ts": "^2.12.1",
"uuid": "^9.0.1",
"zod": "^3.22.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@clerk/types": "^3.61.0",
"@faker-js/faker": "^8.4.0",
"@types/dompurify": "^3.0.5",
"@types/google.maps": "^3.55.1",
"@types/node": "^20",
"@types/pluralize": "^0.0.33",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-tailwindcss": "^3.14.1",
"postcss": "^8",
"tailwindcss": "^3",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"prisma": {
"seed": "npm run ts-node --transpile-only prisma/seed.ts"
}
}