fix: Configure React dependencies and verify navigation

- Properly organize React dependencies in package.json
- Move @types/react-dom to devDependencies
- Verify all navigation pages are working correctly:
  * Overview page (/) with status indicators and quick actions
  * Analysis page (/analysis) with AI analysis panel
  * Trading page (/trading) with trading panel and history
  * Automation page (/automation) with auto-trading settings
  * Settings page (/settings) with developer config
- App successfully builds and runs on port 9000:3000 in Docker container
This commit is contained in:
mindesbunister
2025-07-14 00:26:37 +02:00
parent 3c988b47f2
commit a2df9ea237

View File

@@ -40,7 +40,6 @@
"@drift-labs/sdk": "^2.126.0-beta.14",
"@prisma/client": "^6.11.1",
"@solana/web3.js": "^1.98.2",
"@types/react-dom": "^19.1.6",
"bs58": "^6.0.0",
"dotenv": "^17.2.0",
"next": "15.3.5",
@@ -56,6 +55,7 @@
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19.1.6",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "15.3.5",