This commit is contained in:
2025-09-08 12:51:15 -07:00
commit 574feb1ea1
62 changed files with 10425 additions and 0 deletions

32
frontend/package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "aic-frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"next": "14.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"recharts": "3.4.2"
},
"devDependencies": {
"@types/node": "20.11.5",
"@types/react": "18.2.60",
"@types/react-dom": "18.2.22",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"typescript": "5.3.3"
}
}