-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.14 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.14 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "free-nextjs-admin-dashboard",
"version": "2.0.2",
"private": true,
"scripts": {
"dev": "next dev",
"postinstall": "prisma generate",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"format": "prettier --write .",
"migrate": "npx prisma migrate dev --name",
"studio": "npx prisma studio"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.850.0",
"@aws-sdk/s3-request-presigner": "^3.850.0",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/list": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@hookform/resolvers": "^5.1.1",
"@prisma/client": "^6.13.0",
"@prisma/extension-accelerate": "^2.0.2",
"@react-jvectormap/core": "^1.0.4",
"@react-jvectormap/world": "^1.1.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/postcss": "^4.0.9",
"@tanstack/react-query": "^5.83.0",
"@uppy/core": "^4.5.1",
"@uppy/dashboard": "^4.4.1",
"@uppy/locales": "^4.7.1",
"@uppy/react": "^4.5.1",
"@uppy/xhr-upload": "^4.4.1",
"apexcharts": "^4.3.0",
"autoprefixer": "^10.4.20",
"bcryptjs": "^3.0.2",
"deep-object-diff": "^1.1.9",
"dotenv": "^17.2.1",
"flatpickr": "^4.6.13",
"install": "^0.13.0",
"joi": "^17.13.3",
"jose": "^6.0.12",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"ky": "^1.8.2",
"lodash": "^4.17.21",
"lottie-react": "^2.4.1",
"lucide-react": "^0.536.0",
"next": "15.2.3",
"npm": "^11.5.1",
"plaiceholder": "^3.0.0",
"react": "^19.0.0",
"react-apexcharts": "^1.7.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.0.0",
"react-hook-form": "^7.60.0",
"react-hot-toast": "^2.5.2",
"react-intersection-observer": "^9.16.0",
"react-pdf": "^10.0.1",
"react-select": "^5.10.2",
"react-spinners": "^0.17.0",
"sharp": "^0.34.3",
"swiper": "^11.2.0",
"tailwind-merge": "^2.6.0",
"zod": "^4.0.10",
"zustand": "^5.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query-devtools": "^5.83.0",
"@types/js-cookie": "^3.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.20",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-transition-group": "^4.4.12",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"postcss": "^8",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"prisma": "^6.13.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.20.3",
"typescript": "^5"
},
"overrides": {
"@react-jvectormap/core": {
"react": "^16.8.0 || ^17 || ^18 || ^19",
"react-dom": "^16.8.0 || ^17 || ^18 || ^19"
},
"@react-jvectormap/world": {
"react": "^16.8.0 || ^17 || ^18 || ^19",
"react-dom": "^16.8.0 || ^17 || ^18 || ^19"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}