backend fixes

This commit is contained in:
Jake Kasper
2025-08-21 07:35:02 -05:00
parent 3840b627dc
commit 0e55996e41
9 changed files with 145 additions and 5 deletions

18
frontend/.dockerignore Normal file
View File

@@ -0,0 +1,18 @@
node_modules
.git
.gitignore
README.md
.env
.nyc_output
coverage
.coverage
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.DS_Store
.vscode
.idea
*.swp
*.swo
*~

8
frontend/.npmrc Normal file
View File

@@ -0,0 +1,8 @@
# Suppress funding messages
fund=false
# Suppress audit warnings during install (still run manually with npm audit)
audit=false
# Use legacy peer deps to avoid conflicts
legacy-peer-deps=true

View File

@@ -7,7 +7,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN npm install
RUN npm install --silent
# Copy source code
COPY . .

View File

@@ -7,8 +7,8 @@
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"react-router-dom": "^6.8.1",
"axios": "^1.6.2",
@@ -19,6 +19,9 @@
"react-hook-form": "^7.48.2",
"react-query": "^3.39.3",
"tailwindcss": "^3.3.6",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@tailwindcss/aspect-ratio": "^0.4.2",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"react-hot-toast": "^2.4.1",