Features: - Fire detection (YOLOv10) - Helmet detection (YOLOv8) - Crowd detection (YOLOv8) - Smoking detection (YOLOv8) - Loitering detection (YOLOv8) Tech Stack: - Frontend: Vue 3 + Vite + Element Plus - Backend: FastAPI + WebSocket - Monorepo: pnpm workspace + Turbo - Docker support included
25 lines
578 B
JSON
25 lines
578 B
JSON
{
|
|
"name": "web",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
"clean": "rm -rf dist node_modules"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^3.3.4",
|
|
"vue-router": "^4.2.5",
|
|
"axios": "^1.6.2",
|
|
"element-plus": "^2.4.4",
|
|
"@element-plus/icons-vue": "^2.3.1",
|
|
"pinia": "^2.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^4.5.0",
|
|
"vite": "^5.0.0"
|
|
}
|
|
}
|