-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 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
{
"name": "pwa-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"vercel-build": "prisma generate && prisma db push && next build",
"lint": "next lint",
"prisma:generate": "prisma generate",
"seed": "node prisma/seed.js"
},
"dependencies": {
"@coinbase/cbpay-js": "^2.2.1",
"@coinbase/coinbase-sdk": "^0.9.1",
"@firebase/messaging": "^0.12.10",
"@prisma/client": "^5.20.0",
"@privy-io/react-auth": "^1.82.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@stripe/stripe-js": "^4.5.0",
"@types/toastify-js": "^1.12.3",
"@uploadthing/react": "^6.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cookies-next": "^4.2.1",
"cropperjs": "^1.6.2",
"date-fns": "^4.1.0",
"firebase": "^10.13.1",
"firebase-admin": "^12.6.0",
"flowbite": "^2.5.2",
"flowbite-react": "^0.10.2",
"jsonwebtoken": "^9.0.2",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.439.0",
"nanoid": "^3.3.4",
"next": "14.2.3",
"next-pwa": "^5.6.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.3.0",
"react-toastify": "^10.0.5",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"stripe": "^16.12.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uploadthing": "^6.13.2",
"web-push": "3.6.7"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-toastify": "^4.1.0",
"@types/web-push": "^3.6.3",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"lorem-ipsum": "^2.0.8",
"postcss": "^8.4.47",
"prisma": "^5.18.0",
"tailwindcss": "^3.4.13",
"typescript": "^5"
}
}