recipe_app/frontend/package.json

50 lines
1.3 KiB
JSON
Raw 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-10-30 14:27:53 -07:00
"production": "npx tsc -b && vite build",
2025-10-30 14:39:02 -07:00
"ci": "npx tsc -b && vite build",
"lint": "eslint ."
2025-07-08 10:40:49 -07:00
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
2025-10-30 14:39:02 -07:00
"react-router-dom": "^7.6.3"
},
"devDependencies": {
"@types/node": "^24.2.0",
"@eslint/js": "^9.29.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.29.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"tailwindcss": "^3.4.17",
2025-10-30 14:27:53 -07:00
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.1",
2025-10-30 14:39:02 -07:00
"vite": "^7.0.0"
},
"ciDependencies": {
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-10-30 14:39:02 -07:00
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.1",
2025-07-08 10:40:49 -07:00
"vite": "^7.0.0"
2025-10-30 14:39:02 -07:00
}
2025-07-08 10:40:49 -07:00
}