- package.json with dependencies and scripts for development - postcss.config.js for Tailwind CSS and autoprefixer - main App component with routing for Trips and Items pages - API functions for fetching trips and items - components for item listing, item rows, search bar, and tag filtering - ItemsPage to manage items with search and tag filtering - TripsPage to display trips and associated items - Tailwind CSS and TypeScript settings
24 lines
509 B
JSON
24 lines
509 B
JSON
{
|
|
"name": "packlist-frontend",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"react-router-dom": "^7.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.0.0",
|
|
"@types/react-dom": "^18.0.0",
|
|
"autoprefixer": "^10.0.0",
|
|
"postcss": "^8.0.0",
|
|
"tailwindcss": "^3.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^5.0.0"
|
|
}
|
|
}
|