-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "restaurant",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npx prisma db push && npx prisma generate && next build",
"prisma-migrate": "dotenv -e .env.local -- npx prisma migrate dev",
"prisma-studio": "dotenv -e .env.local -- npx prisma studio",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.2",
"@prisma/client": "^5.19.0",
"@stripe/react-stripe-js": "^2.8.0",
"@stripe/stripe-js": "^4.4.0",
"@tanstack/react-query": "^5.52.2",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"auth": "^1.1.1",
"autoprefixer": "10.4.14",
"axios": "^1.7.5",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"moment": "^2.30.1",
"next": "^14.2.6",
"next-auth": "^5.0.0-beta.20",
"postcss": "8.4.26",
"react": "^18",
"react-confetti-explosion": "^2.1.2",
"react-countdown": "^2.3.5",
"react-dom": "^18",
"react-toastify": "^10.0.5",
"stripe": "^16.9.0",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"zustand": "^4.5.5"
}
}