-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "sea-salon",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && next build",
"start": "next start",
"lint": "next lint",
"seed": "node --loader ts-node/esm seed.ts",
"ts-node": "ts-node --compiler-options '{\"module\" : \"CommonJS\"}'"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@heroicons/react": "^2.1.4",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.15.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.2.0",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"formidable": "^3.5.1",
"multer": "^1.4.5-lts.1",
"next": "14.2.4",
"next-auth": "^4.24.7",
"next-cloudinary": "^6.6.2",
"next-connect": "^1.0.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"react-modal": "^3.16.1",
"react-slick": "^0.30.2",
"slick-carousel": "^1.8.1",
"swiper": "^11.1.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/formidable": "^3.4.5",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.8",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-modal": "^3.16.3",
"@types/react-slick": "^0.23.13",
"postcss": "^8",
"prisma": "^5.15.1",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}