- Replaced npm ci with npm install in docker-compose for better package management. - Introduced remote component loading for the VideoStreamingPage with error handling. - Updated the title in index.html to "Experiments Dashboard" for clarity. - Added new video remote service configuration in docker-compose for improved integration. - Removed deprecated files and components related to the video streaming feature to streamline the codebase. - Updated package.json and package-lock.json to include @originjs/vite-plugin-federation for module federation support.
29 lines
604 B
JSON
29 lines
604 B
JSON
{
|
|
"name": "video-remote",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"serve:dist": "serve -s dist -l 3001",
|
|
"preview": "vite preview --port 3001"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@originjs/vite-plugin-federation": "^1.3.3",
|
|
"@vitejs/plugin-react": "^4.6.0",
|
|
"@tailwindcss/vite": "^4.1.11",
|
|
"tailwindcss": "^4.1.11",
|
|
"http-server": "^14.1.1",
|
|
"serve": "^14.2.3",
|
|
"vite": "^7.0.4",
|
|
"typescript": "~5.8.3"
|
|
}
|
|
}
|
|
|
|
|