e045354892
Adds initial project structure, dependencies, and basic configuration for the License Tracker Pro v1.2 application. This includes setting up Vite for the build process, defining core types, and incorporating essential UI components like icons and a timeline. The project is now ready for development.
25 lines
489 B
JSON
25 lines
489 B
JSON
|
|
{
|
|
"name": "license-tracker",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"recharts": "^2.12.0",
|
|
"@google/genai": "^1.34.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.64",
|
|
"@types/react-dom": "^18.2.21",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.1.6"
|
|
}
|
|
}
|