-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.23 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"postinstall": "prisma generate",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@clerk/nextjs": "^6.37.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@google/generative-ai": "^0.24.1",
"@mui/icons-material": "^6.5.0",
"@mui/material": "^6.5.0",
"@mui/x-data-grid": "^8.21.0",
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "^7.0.0",
"@reduxjs/toolkit": "^2.11.0",
"@types/css-modules": "^1.0.5",
"@types/styled-components": "^5.1.36",
"@uploadthing/react": "^7.3.3",
"@wamra/gantt-task-react": "^0.6.17",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.9.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"lodash": "^4.17.21",
"lucide-react": "^0.556.0",
"motion": "^12.23.26",
"next": "^16.0.10",
"numeral": "^2.0.6",
"openai": "^6.17.0",
"pg": "^8.18.0",
"pusher": "^5.3.2",
"pusher-js": "^8.4.0",
"react": "19.2.4",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "19.2.4",
"react-parallax": "^3.5.2",
"react-redux": "^9.2.0",
"react-scroll-parallax": "^3.5.0",
"recharts": "^3.5.1",
"redux-persist": "^6.0.0",
"resend": "^6.9.1",
"styled-components": "^6.1.19",
"svix": "^1.84.1",
"uploadthing": "^7.7.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@prisma/config": "^7.3.0",
"@tailwindcss/postcss": "^4",
"@types/lodash": "^4.17.21",
"@types/node": "^20.19.25",
"@types/numeral": "^2.0.5",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "16.0.7",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.0.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}