Cesar Mendivil 8b458a3ddf feat: add initial LiveKit Meet integration with utility scripts, configs, and core components
- Add Next.js app structure with base configs, linting, and formatting
- Implement LiveKit Meet page, types, and utility functions
- Add Docker, Compose, and deployment scripts for backend and token server
- Provide E2E and smoke test scaffolding with Puppeteer and Playwright helpers
- Include CSS modules and global styles for UI
- Add postMessage and studio integration utilities
- Update package.json with dependencies and scripts for development and testing
2025-11-20 12:50:38 -07:00

59 lines
1.6 KiB
JSON

{
"name": "@avanzacast/studio-panel-deprecated",
"version": "0.2.0",
"private": true,
"description": "(ARCHIVED) Studio Panel moved to broadcast-panel features; kept for history/reference",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --host",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"e2e": "node ./e2e/playwright_test.mjs"
},
"dependencies": {
"@livekit/components-react": "^2.7.2",
"@livekit/components-styles": "^1.1.5",
"avanza-ui": "file:../avanza-ui",
"livekit-client": "^2.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@playwright/test": "1.51.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@tailwindcss/postcss": "^4.1.17",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^4.0.0",
"node-fetch": "^3.3.1",
"playwright": "^1.51.0",
"storybook": "^8.0.0",
"tailwindcss": "^4.1.17",
"typescript": "^5.5.0",
"vite": "^5.0.0",
"vitest": "^1.1.8"
},
"vitest": {
"test": {
"environment": "jsdom",
"setupFiles": "./src/setupTests.ts",
"globals": true
}
},
"main": "index.js",
"directories": {
"test": "tests"
},
"keywords": [],
"author": "",
"license": "ISC"
}