Files
learn-build-apps-copilot-agent/octofit-tracker/frontend/package.json
T
farcasclaudiu 39ef098873 feat: initialize frontend with React and Vite setup
- Added React and Vite configuration files.
- Created main entry point for the application.
- Included global CSS styles for theming and layout.
- Added SVG assets for React and Vite logos.
2026-06-20 01:42:56 +00:00

30 lines
667 B
JSON

{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"bootstrap": "^5.3.8",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.18.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"vite": "^8.0.12"
}
}