-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Linting, upgrade to ESLint 9, upgrade to Vite 6, other dependen…
…cy upgrades
- Loading branch information
Showing
81 changed files
with
4,501 additions
and
4,867 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import config from "@repo/eslint-config/index.mjs"; | ||
|
||
export default [...config]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,52 @@ | ||
{ | ||
"name": "frontend", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"lint": "eslint --ext .tsx,.ts src/ --report-unused-disable-directives", | ||
"start": "serve -s dist -p 3000" | ||
}, | ||
"dependencies": { | ||
"@apollo/client": "^3.11.10", | ||
"@floating-ui/dom": "^1.6.12", | ||
"@mapbox/mapbox-gl-directions": "^4.3.1", | ||
"@radix-ui/react-checkbox": "^1.1.2", | ||
"@radix-ui/react-dialog": "^1.1.2", | ||
"@radix-ui/react-dropdown-menu": "^2.1.2", | ||
"@radix-ui/react-hover-card": "^1.1.2", | ||
"@radix-ui/react-radio-group": "^1.2.1", | ||
"@radix-ui/react-scroll-area": "^1.2.1", | ||
"@radix-ui/react-select": "^2.1.2", | ||
"@radix-ui/react-separator": "^1.1.0", | ||
"@radix-ui/react-tabs": "^1.1.1", | ||
"@radix-ui/react-tooltip": "^1.1.4", | ||
"@repo/theme": "*", | ||
"@shopify/draggable": "^1.1.3", | ||
"@tanstack/react-virtual": "^3.10.9", | ||
"classnames": "^2.5.1", | ||
"fuse.js": "^7.0.0", | ||
"graphql": "^16.9.0", | ||
"iconoir-react": "^7.10.0", | ||
"mapbox-gl": "^3.8.0", | ||
"moment": "^2.30.1", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-router-dom": "^6.28.0", | ||
"recharts": "^2.13.3", | ||
"sass-embedded": "^1.81.0" | ||
}, | ||
"devDependencies": { | ||
"@repo/eslint-config": "*", | ||
"@repo/typescript-config": "*", | ||
"@types/mapbox-gl": "^3.4.1", | ||
"@types/node": "^22.9.1", | ||
"@types/react": "^18.3.12", | ||
"@types/react-dom": "^18.3.1", | ||
"@vitejs/plugin-react": "^4.3.3", | ||
"eslint": "^9.15.0", | ||
"eslint-plugin-react-hooks": "^5.0.0", | ||
"eslint-plugin-react-refresh": "^0.4.14", | ||
"sass": "^1.81.0", | ||
"serve": "^14.2.4", | ||
"typescript": "^5.6.3", | ||
"vite": "^5.4.11" | ||
} | ||
"name": "frontend", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"lint": "eslint src/", | ||
"start": "serve -s dist -p 3000" | ||
}, | ||
"dependencies": { | ||
"@apollo/client": "^3.11.10", | ||
"@floating-ui/dom": "^1.6.12", | ||
"@mapbox/mapbox-gl-directions": "^4.3.1", | ||
"@radix-ui/react-checkbox": "^1.1.2", | ||
"@radix-ui/react-dialog": "^1.1.2", | ||
"@radix-ui/react-dropdown-menu": "^2.1.2", | ||
"@radix-ui/react-hover-card": "^1.1.2", | ||
"@radix-ui/react-radio-group": "^1.2.1", | ||
"@radix-ui/react-scroll-area": "^1.2.1", | ||
"@radix-ui/react-select": "^2.1.2", | ||
"@radix-ui/react-separator": "^1.1.0", | ||
"@radix-ui/react-tabs": "^1.1.1", | ||
"@radix-ui/react-tooltip": "^1.1.4", | ||
"@repo/theme": "*", | ||
"@shopify/draggable": "^1.1.3", | ||
"@tanstack/react-virtual": "^3.10.9", | ||
"classnames": "^2.5.1", | ||
"fuse.js": "^7.0.0", | ||
"graphql": "^16.9.0", | ||
"iconoir-react": "^7.10.0", | ||
"mapbox-gl": "^3.8.0", | ||
"moment": "^2.30.1", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-router-dom": "^7.0.1", | ||
"recharts": "^2.13.3" | ||
}, | ||
"devDependencies": { | ||
"@repo/eslint-config": "*", | ||
"@repo/typescript-config": "*", | ||
"@types/mapbox-gl": "^3.4.1", | ||
"@types/node": "^22.10.0", | ||
"@types/react": "^18.3.12", | ||
"@types/react-dom": "^18.3.1", | ||
"@vitejs/plugin-react": "^4.3.4", | ||
"eslint": "^9.15.0", | ||
"serve": "^14.2.4", | ||
"typescript": "^5.7.2", | ||
"vite": "^6.0.1" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
import styles from "./About.module.scss"; | ||
|
||
export default function About() { | ||
return <div className={styles.root}></div>; | ||
return <></>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ | |
pointer-events: none; | ||
font-size: 16px; | ||
line-height: 1; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.