-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.13 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "vuexy-mui-nextjs-admin-template",
"version": "2.0.0",
"license": "Commercial",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"build:icons": "tsx src/assets/iconify-icons/bundle-icons-css.ts",
"migrate": "dotenv -e .env -- npx prisma migrate dev",
"postinstall": "prisma generate && npm run build:icons"
},
"dependencies": {
"@auth/prisma-adapter": "1.5.0",
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.0",
"@floating-ui/react": "0.26.9",
"@formatjs/intl-localematcher": "0.5.4",
"@fullcalendar/common": "5.11.5",
"@fullcalendar/core": "6.1.11",
"@fullcalendar/daygrid": "6.1.11",
"@fullcalendar/interaction": "6.1.11",
"@fullcalendar/list": "6.1.11",
"@fullcalendar/react": "6.1.11",
"@fullcalendar/timegrid": "6.1.11",
"@hookform/resolvers": "3.3.4",
"@iconify/json": "2.2.190",
"@mui/lab": "5.0.0-alpha.167",
"@mui/material": "5.15.12",
"@mui/material-nextjs": "5.15.11",
"@prisma/client": "5.10.2",
"@tanstack/match-sorter-utils": "8.11.8",
"@tanstack/react-table": "8.13.2",
"apexcharts": "3.47.0",
"bootstrap-icons": "1.11.3",
"classnames": "2.5.1",
"date-fns": "3.3.1",
"draft-js": "0.11.7",
"kbar": "0.1.0-beta.45",
"keen-slider": "6.8.6",
"negotiator": "0.6.3",
"next": "14.1.3",
"next-auth": "4.24.7",
"react": "18.2.0",
"react-apexcharts": "1.4.1",
"react-colorful": "5.6.1",
"react-datepicker": "6.2.0",
"react-dom": "18.2.0",
"react-draft-wysiwyg": "1.15.0",
"react-dropzone": "14.2.3",
"react-hook-form": "7.51.0",
"react-perfect-scrollbar": "1.5.8",
"react-toastify": "10.0.4",
"react-use": "17.5.0",
"recharts": "2.12.2",
"server-only": "0.0.1",
"stylis": "4.3.1",
"stylis-plugin-rtl": "2.1.1",
"tailwindcss": "3.4.1",
"tailwindcss-logical": "3.0.1",
"tsx": "4.7.1",
"valibot": "0.29.0"
},
"devDependencies": {
"@types/negotiator": "^0.6.3",
"@types/node": "^20.11.25",
"@types/react": "^18.2.64",
"@types/react-datepicker": "^6.0.3",
"@types/react-dom": "^18.2.21",
"@types/react-draft-wysiwyg": "^1.13.8",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"autoprefixer": "10.4.18",
"dotenv-cli": "7.4.1",
"eslint": "8.57.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"postcss": "8.4.35",
"postcss-styled-syntax": "0.6.4",
"prettier": "3.2.5",
"prisma": "5.10.2",
"stylelint": "16.2.1",
"stylelint-use-logical-spec": "5.0.1",
"typescript": "5.4.2",
"@iconify/tools": "4.0.2",
"@iconify/types": "2.0.0",
"@iconify/utils": "2.1.22"
},
"resolutions": {
"immutable": "3.7.4"
},
"overrides": {
"react": "18.2.0"
},
"prisma": {
"schema": "./src/prisma/schema.prisma"
}
}