Skip to content

Commit

Permalink
Minor deps bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
ankith26 committed Dec 29, 2024
1 parent 6637320 commit 29e9c30
Show file tree
Hide file tree
Showing 8 changed files with 383 additions and 426 deletions.
6 changes: 3 additions & 3 deletions backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ annotated-types==0.7.0
anyio==4.7.0
certifi==2024.12.14
cffi==1.17.1
charset-normalizer==3.4.0
click==8.1.7
charset-normalizer==3.4.1
click==8.1.8
cryptography==44.0.0
dnspython==2.7.0
email_validator==2.2.0
Expand All @@ -31,7 +31,7 @@ six==1.17.0
sniffio==1.3.1
starlette==0.41.3
typing_extensions==4.12.2
urllib3==2.2.3
urllib3==2.3.0
uvicorn==0.34.0
uvloop==0.21.0
watchfiles==1.0.3
Expand Down
773 changes: 371 additions & 402 deletions frontend/package-lock.json

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,24 @@
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.2.1",
"@mui/material": "^6.2.1",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.3.4",
"axios": "^1.7.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.2",
"react-router": "^7.1.1",
"typescript": "^5.7.2",
"vite": "^6.0.4"
"vite": "^6.0.6"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0",
"typescript-eslint": "^8.18.1"
"typescript-eslint": "^8.18.2"
}
}
1 change: 0 additions & 1 deletion frontend/public/vite.svg

This file was deleted.

4 changes: 0 additions & 4 deletions frontend/src/App.css

This file was deleted.

8 changes: 1 addition & 7 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
import React, { useState, useEffect } from 'react';
import {
BrowserRouter as Router,
Route,
Routes,
Navigate,
} from 'react-router-dom';
import { BrowserRouter as Router, Route, Routes, Navigate } from 'react-router';
import { ThemeProvider, CssBaseline, Box } from '@mui/material';

import Home from './pages/Home';
Expand All @@ -16,7 +11,6 @@ import Footer from './components/Footer';
import FullPageLoader from './components/FullPageLoader';
import ErrorDialog from './components/ErrorDialog';

import './App.css'; // Import the global styles
import theme from './theme';

import { api, set_logout_callback, set_errmsg_callback } from './api';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { Link as RouterLink } from 'react-router-dom';
import { Link as RouterLink } from 'react-router';
import { Box, Typography, Link } from '@mui/material';

const Footer: React.FC = () => {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
useMediaQuery,
useTheme,
} from '@mui/material';
import { Link, useLocation } from 'react-router-dom';
import { Link, useLocation } from 'react-router';
import { do_login, do_logout } from '../api';

const Navbar: React.FC<{ isLoggedIn: boolean | null }> = ({ isLoggedIn }) => {
Expand Down

0 comments on commit 29e9c30

Please sign in to comment.