mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 04:09:06 +00:00
* docker-compose for production frontend * fix: Remove external Redis port mapping for Coolify compatibility Redis should only be accessible within the internal Docker network in Coolify deployments to avoid port conflicts with other applications. * fix: Remove external port mapping for web service in Coolify Coolify handles port exposure through its proxy (Traefik), so services should not expose ports directly in the docker-compose file. * server side client envs * missing vars * nextjs experimental * fix claude 'fix' * remove build env vars compose * docker * remove ports for coolify * review * cleanup --------- Co-authored-by: Igor Loskutov <igor.loskutoff@gmail.com>
71 lines
2.2 KiB
JSON
71 lines
2.2 KiB
JSON
{
|
|
"name": "reflector-ui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"build-production": "next build --experimental-build-mode compile",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"format": "prettier --write .",
|
|
"openapi": "openapi-typescript http://127.0.0.1:1250/openapi.json -o ./app/reflector-api.d.ts",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@chakra-ui/react": "^3.24.2",
|
|
"@emotion/react": "^11.14.0",
|
|
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
|
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
"@sentry/nextjs": "^10.11.0",
|
|
"@tanstack/react-query": "^5.85.9",
|
|
"@types/ioredis": "^5.0.0",
|
|
"@whereby.com/browser-sdk": "^3.3.4",
|
|
"autoprefixer": "10.4.20",
|
|
"axios": "^1.8.2",
|
|
"eslint": "^9.33.0",
|
|
"eslint-config-next": "^15.5.3",
|
|
"fontawesome": "^5.6.3",
|
|
"ioredis": "^5.7.0",
|
|
"jest-worker": "^29.6.2",
|
|
"lucide-react": "^0.525.0",
|
|
"next": "^15.5.3",
|
|
"next-auth": "^4.24.7",
|
|
"next-themes": "^0.4.6",
|
|
"nuqs": "^2.4.3",
|
|
"openapi-fetch": "^0.14.0",
|
|
"openapi-react-query": "^0.5.0",
|
|
"postcss": "8.4.31",
|
|
"prop-types": "^15.8.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-dropdown": "^1.11.0",
|
|
"react-icons": "^5.0.1",
|
|
"react-markdown": "^9.0.0",
|
|
"react-qr-code": "^2.0.12",
|
|
"react-select-search": "^4.1.7",
|
|
"redlock": "5.0.0-beta.2",
|
|
"remeda": "^2.31.1",
|
|
"sass": "^1.63.6",
|
|
"simple-peer": "^9.11.1",
|
|
"tailwindcss": "^3.3.2",
|
|
"typescript": "^5.1.6",
|
|
"wavesurfer.js": "^7.4.2",
|
|
"zod": "^4.1.5"
|
|
},
|
|
"main": "index.js",
|
|
"repository": "https://github.com/Monadical-SAS/reflector-ui.git",
|
|
"author": "Andreas <andreas@monadical.com>",
|
|
"license": "All Rights Reserved",
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/react": "18.2.20",
|
|
"jest": "^30.1.3",
|
|
"openapi-typescript": "^7.9.1",
|
|
"prettier": "^3.0.0",
|
|
"ts-jest": "^29.4.1"
|
|
},
|
|
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
|
|
}
|