recipe_app/frontend/package.json

36 lines
907 B
JSON
Raw Permalink Normal View History

2025-07-08 10:40:49 -07:00
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
2025-07-25 18:07:20 +00:00
"dev": "vite --host 0.0.0.0 --port 80",
2025-08-06 18:23:36 +00:00
"production": "tsc -b && vite build",
"demo": "tsc -b && vite build",
2025-07-08 10:40:49 -07:00
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.3"
},
"devDependencies": {
2025-08-15 15:02:11 -07:00
"@types/node": "^24.2.0",
2025-07-08 10:40:49 -07:00
"@eslint/js": "^9.29.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
2025-08-15 15:02:11 -07:00
"autoprefixer": "^10.4.21",
2025-07-08 10:40:49 -07:00
"eslint": "^9.29.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
2025-07-11 17:06:41 -07:00
"tailwindcss": "^3.4.17",
2025-07-08 10:40:49 -07:00
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^7.0.0"
}
}