Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23,372 changes: 13,162 additions & 10,210 deletions client/package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"dependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"axios": "^1.13.2",
"axios": "^1.13.5",
"date-fns": "^4.1.0",
"glob-parent": "6.0.2",
"immer": "10.2.0",
"levn": "0.4.1",
"plaid": "^39.1.0",
"plaid": "^41.1.0",
"plaid-threads": "14.5.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
Expand All @@ -21,8 +21,8 @@
"react-scripts": "5.0.1",
"react-toastify": "^10.0.6",
"recharts": "^2.15.0",
"sass": "^1.93.3",
"socket.io-client": "^4.8.1",
"sass": "^1.97.3",
"socket.io-client": "^4.8.3",
"typescript": "^4.9.5"
},
"scripts": {
Expand Down Expand Up @@ -50,14 +50,14 @@
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/react-router-dom": "^5.3.3",
"@types/react-router-hash-link": "^2.4.9",
"@types/socket.io-client": "^3.0.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11"
"prettier": "^3.4.2"
},
"overrides": {
"chokidar": "4.0.3",
Expand Down
4 changes: 2 additions & 2 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { Route, Routes } from 'react-router-dom';
import { ToastContainer } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.min.css';

import Sockets from "./components/Sockets.jsx";
import Sockets from './components/Sockets.jsx';
import OAuthLink from './components/OAuthLink.tsx';
import Landing from './components/Landing.tsx';
import UserPage from "./components/UserPage.tsx";
import UserPage from './components/UserPage.tsx';
import UserList from './components/UserList.tsx';
import { AccountsProvider } from './services/accounts.tsx';
import { InstitutionsProvider } from './services/institutions.tsx';
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/LaunchLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import useItems from '../services/items.tsx';
import useLink from '../services/link.tsx';
import useErrors from '../services/errors.tsx';

import { exchangeToken, setItemState } from '../services/api.tsx'
import { exchangeToken, setItemState } from '../services/api.tsx';

interface Props {
isOauth?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/MoreDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Dropdown from 'plaid-threads/Dropdown';
import IconButton from 'plaid-threads/IconButton';
import Touchable from 'plaid-threads/Touchable';

import LaunchLink from './LaunchLink.tsx';
import LaunchLink from './LaunchLink.tsx';
import useOnClickOutside from '../hooks/useOnClickOutside.ts';
import useLink from '../services/link.tsx';

Expand Down
2 changes: 0 additions & 2 deletions client/src/components/Sockets.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ export default function Sockets() {
getItemById(itemId, true);
});



socket.current.on('NEW_TRANSACTIONS_DATA', ({ itemId } = {}) => {
getAccountsByItem(itemId);
getTransactionsByItem(itemId);
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/UserCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Touchable from 'plaid-threads/Touchable';
import UserDetails from './UserDetails.tsx';
import LaunchLink from './LaunchLink.tsx';

import useItems from '../services/items.tsx'
import useItems from '../services/items.tsx';
import useUsers from '../services/users.tsx';
import useLink from '../services/link.tsx';

Expand Down
1 change: 0 additions & 1 deletion client/src/components/UserPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import LoadingCallout from './LoadingCallout.tsx';
import ErrorMessage from './ErrorMessage.tsx';
import TransactionsTable from './TransactionsTable.tsx';


// provides view of user's net worth, spending by category and allows them to explore
// account and transactions details for linked items

Expand Down
Loading