{
"name": "@lazarv/react-server-example-remote",
"private": true,
"description": "@lazarv/react-server RemoteComponent example application",
"keywords": [],
"license": "ISC",
"author": "",
"scripts": {
"dev:host": "react-server ./index.jsx --port 3000 --name host --devtools",
"dev:remote": "react-server ./remote.jsx --host ::1 --port 3001 --name remote",
"dev:static": "react-server ./static.jsx --port 3002 --name static",
"dev:streaming": "react-server ./streaming.jsx --port 3003 --name streaming",
"dev:live": "react-server ./live.jsx --port 3004 --name live --devtools",
"dev:navigation": "react-server ./navigation.jsx --port 3005 --name navigation",
"dev:form": "react-server ./form.jsx --port 3006 --name form",
"dev:context": "react-server ./context.jsx --port 3007 --name context",
"dev": "CI=1 run-p dev:host dev:remote dev:static dev:streaming dev:live dev:navigation dev:form dev:context",
"build:host": "react-server build ./index.jsx --outDir .react-server --no-export",
"build:remote": "react-server build ./remote.jsx --outDir .react-server-remote --no-export",
"build:static": "react-server build ./static.jsx --outDir .react-server-static",
"build:streaming": "react-server build ./streaming.jsx --outDir .react-server-streaming --no-export",
"build:live": "react-server build ./live.jsx --outDir .react-server-live --no-export",
"build:navigation": "react-server build ./navigation.jsx --outDir .react-server-navigation --no-export",
"build:form": "react-server build ./form.jsx --outDir .react-server-form --no-export",
"build:context": "react-server build ./context.jsx --outDir .react-server-context --no-export",
"build": "run-s build:host build:remote build:static build:streaming build:live build:navigation build:form build:context",
"start:host": "react-server start --outDir .react-server --port 3000",
"start:remote": "react-server start --outDir .react-server-remote --port 3001",
"start:static": "react-server start --outDir .react-server-static --port 3002",
"start:streaming": "react-server start --outDir .react-server-streaming --port 3003",
"start:live": "react-server start --outDir .react-server-live --port 3004",
"start:navigation": "react-server start --outDir .react-server-navigation --port 3005",
"start:form": "react-server start --outDir .react-server-form --port 3006",
"start:context": "react-server start --outDir .react-server-context --port 3007",
"start": "run-p start:host start:remote start:static start:streaming start:live start:navigation start:form start:context"
},
"dependencies": {
"@lazarv/react-server": "workspace:^"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}