-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.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
{
"name": "my-store",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"postinstall": "prisma generate"
},
"dependencies": {
"@clerk/nextjs": "^5.2.6",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.4",
"@mui/material": "^5.16.4",
"@mui/x-charts": "^7.11.1",
"@mui/x-data-grid": "^7.11.1",
"@prisma/client": "^5.17.0",
"@reduxjs/toolkit": "^2.2.7",
"date-fns": "^3.6.0",
"dayjs": "^1.11.12",
"firebase": "^10.12.4",
"next": "14.2.5",
"nextjs-toploader": "^1.6.12",
"nodemailer": "^6.9.14",
"react": "^18",
"react-dom": "^18",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"svix": "^1.25.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"postcss": "^8",
"prisma": "^5.17.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}