-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.1 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "vristo-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@fullcalendar/core": "^6.1.4",
"@fullcalendar/daygrid": "^6.1.4",
"@fullcalendar/interaction": "^6.1.1",
"@fullcalendar/react": "^6.1.4",
"@fullcalendar/timegrid": "^6.1.1",
"@headlessui/react": "^2.1.2",
"@hookform/resolvers": "^3.9.1",
"@mantine/core": "^5.10.5",
"@mantine/hooks": "^5.10.5",
"@prisma/client": "^6.1.0",
"@reduxjs/toolkit": "^2.2.7",
"@tippyjs/react": "^4.2.6",
"@types/node": "^22.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.3.0",
"@x1mrdonut1x/nouislider-react": "^3.4.3",
"apexcharts": "^3.37.1",
"easymde": "^2.18.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.13",
"format-thousands": "^2.0.0",
"formik": "^2.2.9",
"highlight.js": "^11.7.0",
"i18next": "^23.13.0",
"mantine-datatable": "^1.7.35",
"next": "14.2.13",
"next-auth": "^4.24.11",
"ni18n": "^1.0.5",
"prisma": "^6.1.0",
"react": "18.3.1",
"react-animate-height": "^3.1.0",
"react-apexcharts": "^1.4.0",
"react-click-away-listener": "^2.2.2",
"react-copy-to-clipboard": "^5.1.0",
"react-countup": "^6.4.1",
"react-dom": "18.3.1",
"react-flatpickr": "^3.10.13",
"react-hook-form": "^7.54.2",
"react-i18next": "^15.0.2",
"react-images-uploading": "^3.1.7",
"react-perfect-scrollbar": "^1.5.8",
"react-popper": "^2.3.0",
"react-quill": "^2.0.0",
"react-redux": "^9.1.2",
"react-select": "^5.7.0",
"react-simplemde-editor": "^5.2.0",
"react-sortablejs": "^6.1.4",
"react-text-mask": "^5.5.0",
"sortablejs": "^1.15.0",
"sweetalert2": "^11.7.1",
"sweetalert2-react-content": "^5.0.7",
"swiper": "^11.1.14",
"typescript": "^5.3.3",
"universal-cookie": "^7.2.0",
"yet-another-react-lightbox": "^3.15.6",
"yup": "^1.4.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.8",
"@types/lodash": "^4.17.10",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-flatpickr": "^3.8.8",
"@types/react-redux": "^7.1.32",
"@types/react-text-mask": "^5.4.11",
"@types/sortablejs": "^1.15.0",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2"
},
"prisma": {
"seed": "ts-node -r tsconfig-paths/register --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}