-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
58
{
"name": "elila_foundation",
"version": "0.1.0",
"private": true,
"engines": {
"node": "22.22.0"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"build:seed": "tsc prisma/seed.ts --outDir dist --esModuleInterop"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@cloudinary/react": "^1.14.3",
"@cloudinary/url-gen": "^1.22.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.15.0",
"@reduxjs/toolkit": "^2.8.2",
"aos": "^2.3.4",
"axios": "^1.7.9",
"bcrypt": "^6.0.0",
"cloudinary": "^2.7.0",
"framer-motion": "^12.23.7",
"googleapis": "^169.0.0",
"lucide-react": "^0.525.0",
"next": "^15.5.13",
"next-auth": "^4.24.11",
"next-cloudinary": "^6.16.0",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.62.0",
"react-icons": "^5.5.0",
"react-redux": "^9.2.0",
"swiper": "^12.1.2",
"zod": "^4.0.14"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.11",
"@types/bcrypt": "^6.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"cross-env": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "15.4.3",
"prisma": "^6.15.0",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}