Skip to content

Commit

Permalink
fix: dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rokartur committed May 24, 2024
1 parent 37c8fc6 commit c2609c4
Show file tree
Hide file tree
Showing 6 changed files with 142 additions and 306 deletions.
11 changes: 0 additions & 11 deletions package.json

This file was deleted.

5 changes: 4 additions & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,24 @@
"@studio-freight/lenis": "^1.0.42",
"alert": "^6.0.1",
"arctic": "^1.9.0",
"date-fns": "^3.6.0",
"framer-motion": "^11.2.6",
"gsap": "^3.12.5",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.5.2",
"js-cookie": "^3.0.5",
"lodash-es": "^4.17.21",
"lucia": "^3.2.0",
"moment": "^2.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.51.5",
"react-i18next": "^14.1.2",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1",
"react-schedule-meeting": "^4.2.3",
"react-toastify": "^10.0.5",
"sass": "^1.77.2",
"sweetalert2": "^11.11.0",
Expand All @@ -54,7 +58,6 @@
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.4.5",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.2.11"
Expand Down
29 changes: 15 additions & 14 deletions website/src/pages/app/calendar.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
import styles from '@/styles/calendar.module.scss'
import { useEffect, useMemo, useReducer, useState } from 'react'
import moment from 'moment'
import { useNavigate } from 'react-router-dom'
import { ScheduleMeeting } from 'react-schedule-meeting'
import Swal from 'sweetalert2'
import wretch from 'wretch'
import { AnimateWrapper } from '@/components/animateWrapper/animateWrapper.tsx'
import { Button } from '@/components/button/button.tsx'
import { Container } from '@/components/container/container.tsx'
import { Overlay } from '@/components/overlay/overlay.tsx'
import { SEO } from '@/components/seo.tsx'
import { Tooltip } from '@/components/tooltip/tooltip.tsx'
import { useAppSelector } from '@/utils/store.ts'
import styles from '@/styles/calendar.module.scss';
import { useEffect, useMemo, useReducer, useState } from 'react';
import moment from 'moment';
import { useNavigate } from 'react-router-dom';
import { ScheduleMeeting } from 'react-schedule-meeting';
import Swal from 'sweetalert2';
import wretch from 'wretch';
import { AnimateWrapper } from '@/components/animateWrapper/animateWrapper.tsx';
import { Button } from '@/components/button/button.tsx';
import { Container } from '@/components/container/container.tsx';
import { Overlay } from '@/components/overlay/overlay.tsx';
import { SEO } from '@/components/seo.tsx';
import { Tooltip } from '@/components/tooltip/tooltip.tsx';
import { useAppSelector } from '@/utils/store.ts';


const metaData = {
title: 'Calendar',
Expand Down
2 changes: 0 additions & 2 deletions website/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import react from '@vitejs/plugin-react'
import svgr from '@svgr/rollup'
import path from 'path'
import { visualizer } from 'rollup-plugin-visualizer'
import { defineConfig, loadEnv } from 'vite'

export default defineConfig(({ mode }) => {
Expand All @@ -19,7 +18,6 @@ export default defineConfig(({ mode }) => {
plugins: [
react(),
svgr({ icon: false, svgo: false }),
visualizer({ gzipSize: true }),
],
publicDir: 'src/public',
define: processEnvValues,
Expand Down
Loading

0 comments on commit c2609c4

Please sign in to comment.