- 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
52 lines
1.8 KiB
JSON
52 lines
1.8 KiB
JSON
{
|
|
"name": "avanzacast-monorepo",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "AvanzaCast - Plataforma de Streaming Modular",
|
|
"workspaces": [
|
|
"packages/admin-panel",
|
|
"packages/avanza-ui",
|
|
"packages/backend-api",
|
|
"packages/broadcast-panel",
|
|
"packages/e2e",
|
|
"packages/landing-page",
|
|
"packages/shared-components",
|
|
"packages/studio-panel-deprecated",
|
|
"packages/vristo-react-main",
|
|
"shared/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "concurrently \"npm:dev:*\"",
|
|
"dev:landing": "npm run dev --workspace=packages/landing-page",
|
|
"dev:api": "npm run dev --workspace=packages/backend-api",
|
|
"dev:studio": "npm run dev --workspace=packages/broadcast-studio",
|
|
"dev:broadcast-panel": "npm run dev --workspace=packages/broadcast-panel",
|
|
"dev:admin": "npm run dev --workspace=packages/admin-panel",
|
|
"build": "npm run build --workspaces",
|
|
"build:landing": "npm run build --workspace=packages/landing-page",
|
|
"build:api": "npm run build --workspace=packages/backend-api",
|
|
"build:studio": "npm run build --workspace=packages/broadcast-studio",
|
|
"build:broadcast-panel": "npm run build --workspace=packages/broadcast-panel",
|
|
"build:admin": "npm run build --workspace=packages/admin-panel",
|
|
"clean": "rm -rf packages/*/node_modules packages/*/dist shared/*/node_modules node_modules",
|
|
"typecheck": "npm run typecheck --workspaces",
|
|
"lint": "npm run lint --workspaces",
|
|
"test": "npm run test --workspaces"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2",
|
|
"playwright": "^1.51.0",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0",
|
|
"npm": ">=10.0.0"
|
|
},
|
|
"dependencies": {
|
|
"puppeteer": "^19.11.1",
|
|
"puppeteer-core": "^24.30.0",
|
|
"react-icons": "^5.5.0"
|
|
}
|
|
}
|