Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Individual Project #3

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
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
493 changes: 493 additions & 0 deletions README.md

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions client-side/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
4 changes: 4 additions & 0 deletions client-side/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
vite.svg,1703085889994,59ec4b6085a0cb1bf712a5e48dd5f35b08e34830d49c2026c18241be04e05d5a
index.html,1703223507361,fbcb9d2f952d573c08b9f54c87396a3f1274f7fa41a8aac56c4a4dac152809e3
assets/index-GxxGAP0D.css,1703223507361,07186c63dbdc92fbd2fe33a99af1beb3c690976459ed6191bf584dfedbf1942f
assets/index-roVQ05fn.js,1703223507361,37bec289cb4667e17467a2a7fa4f87fa3e1aef71a90799330cc4c494b8bb00d3
5 changes: 5 additions & 0 deletions client-side/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "individualproject-9427b"
}
}
24 changes: 24 additions & 0 deletions client-side/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
47 changes: 47 additions & 0 deletions client-side/.vite/deps/_metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"hash": "6adff993",
"browserHash": "469ff556",
"optimized": {
"react": {
"src": "../../node_modules/react/index.js",
"file": "react.js",
"fileHash": "7f33aba1",
"needsInterop": true
},
"react-dom/client": {
"src": "../../node_modules/react-dom/client.js",
"file": "react-dom_client.js",
"fileHash": "82c8f9c7",
"needsInterop": true
},
"react-router-dom": {
"src": "../../node_modules/react-router-dom/dist/index.js",
"file": "react-router-dom.js",
"fileHash": "26ca09d3",
"needsInterop": false
},
"sweetalert2": {
"src": "../../node_modules/sweetalert2/dist/sweetalert2.all.js",
"file": "sweetalert2.js",
"fileHash": "21f3cb14",
"needsInterop": true
},
"axios": {
"src": "../../node_modules/axios/index.js",
"file": "axios.js",
"fileHash": "ff568d1c",
"needsInterop": false
}
},
"chunks": {
"chunk-PXJLUKTU": {
"file": "chunk-PXJLUKTU.js"
},
"chunk-FQO5W7GE": {
"file": "chunk-FQO5W7GE.js"
},
"chunk-ZS7NZCD4": {
"file": "chunk-ZS7NZCD4.js"
}
}
}
Loading