Initial commit: StreamFlow IPTV platform

This commit is contained in:
aiulian25 2025-12-17 00:42:43 +00:00
commit 73a8ae9ffd
1240 changed files with 278451 additions and 0 deletions

40
frontend/package.json Normal file
View file

@ -0,0 +1,40 @@
{
"name": "streamflow-frontend",
"version": "1.0.0",
"description": "StreamFlow IPTV Frontend",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"security:audit": "npm audit --audit-level=moderate",
"security:lint": "eslint . --ext .js,.jsx",
"security:check": "npm run security:audit && npm run security:lint"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"@mui/material": "^5.15.3",
"@mui/icons-material": "^5.15.3",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"axios": "^1.6.5",
"i18next": "^23.7.16",
"react-i18next": "^14.0.0",
"video.js": "^8.9.0",
"react-player": "^2.14.1",
"zustand": "^4.4.7",
"date-fns": "^3.1.0"
},
"devDependencies": {
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^5.0.11",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^3.0.1"
}
}