-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
{
"name": "e-pilketos-moklet",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma": "npx prisma migrate dev",
"prisma:push": "npx prisma db push",
"prisma:studio": "npx prisma studio",
"prisma:generate": "npx prisma generate",
"seed": "node --loader ts-node/esm ./prisma/seed.ts"
},
"prisma" : {
"seed" : "node --loader ts-node/esm ./prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.19.1",
"@types/aos": "^3.0.7",
"@types/bcrypt": "^5.0.2",
"aos": "^2.3.4",
"bcrypt": "^5.1.1",
"chart.js": "^4.4.3",
"cloudinary": "^2.2.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"googleapis": "^142.0.0",
"install": "^0.13.0",
"keen-slider": "^6.8.6",
"minisearch": "^7.1.0",
"next": "^14.2.13",
"next-auth": "^4.24.7",
"next-cloudinary": "^6.6.2",
"next-nprogress-bar": "^2.3.12",
"nodemailer": "^6.9.14",
"npm": "^10.8.2",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-data-table-component": "^7.6.2",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-select": "^5.8.0",
"react-slick": "^0.30.2",
"read-excel-file": "^5.7.1",
"save": "^2.9.0",
"sharp": "^0.33.4",
"slick-carousel": "^1.8.1",
"sonner": "^1.5.0",
"styled-components": "^6.1.12",
"swiper": "^11.1.4",
"swr": "^2.2.5",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/node": "^20.16.5",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-slick": "^0.23.13",
"@types/uuid": "^10.0.0",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"postcss": "^8",
"prisma": "^5.19.1",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}