CoolFace
Apppublic

philippe83260/seamless-streaming

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
package.json54 linesDownload Raw Back to streaming-react-app
1{2  "name": "streaming-react-app",3  "private": true,4  "version": "0.0.14",5  "type": "module",6  "scripts": {7    "dev": "vite --host --strictPort",8    "build": "vite build",9    "preview": "vite preview",10    "clean:node-modules": "rm -rf node_modules/",11    "ts-check": "tsc --noEmit",12    "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",13    "prettier-check": "cd ../ && yarn run prettier-base --check streaming-react-app",14    "signal": "concurrently --names \"TS,LINT,PRETTIER\" -c \"bgBlack.bold,bgRed.bold,bgCyan.bold\" \"yarn run ts-check\" \"yarn run lint\" \"yarn run prettier-check\""15  },16  "dependencies": {17    "@emotion/react": "11.11.1",18    "@emotion/styled": "11.11.0",19    "@mui/icons-material": "5.14.3",20    "@mui/material": "5.14.5",21    "@react-three/drei": "^9.83.9",22    "@react-three/fiber": "^8.14.1",23    "@react-three/xr": "^5.7.1",24    "amazon-cognito-identity-js": "^6.3.6",25    "audiobuffer-to-wav": "^1.0.0",26    "aws-sdk": "^2.1472.0",27    "js-cookie": "^3.0.5",28    "lodash": "4.17.21",29    "react": "^18.2.0",30    "react-dom": "^18.2.0",31    "react-google-charts": "^4.0.1",32    "socket.io-client": "^4.7.2",33    "three": "^0.156.1",34    "three-mesh-ui": "^6.5.4",35    "uuid": "^9.0.0",36    "zustand": "^4.4.3"37  },38  "devDependencies": {39    "@types/node": "^20.5.3",40    "@types/react": "^18.2.15",41    "@types/react-dom": "^18.2.7",42    "@types/uuid": "^9.0.2",43    "@typescript-eslint/eslint-plugin": "^6.0.0",44    "@typescript-eslint/parser": "^6.0.0",45    "@vitejs/plugin-react": "^4.0.3",46    "concurrently": "8.2.1",47    "eslint": "^8.45.0",48    "eslint-plugin-react-hooks": "^4.6.0",49    "eslint-plugin-react-refresh": "^0.4.3",50    "typescript": "5.1.6",51    "vite": "^4.4.5"52  }53}54