├── .gitignore ├── client ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── routes │ │ ├── CreateRoom.js │ │ └── Room.js │ ├── serviceWorker.js │ └── setupTests.js └── yarn.lock ├── package.json ├── server.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 2 | 3 | ## Available Scripts 4 | 5 | In the project directory, you can run: 6 | 7 | ### `yarn start` 8 | 9 | Runs the app in the development mode.
10 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 11 | 12 | The page will reload if you make edits.
13 | You will also see any lint errors in the console. 14 | 15 | ### `yarn test` 16 | 17 | Launches the test runner in the interactive watch mode.
18 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 19 | 20 | ### `yarn build` 21 | 22 | Builds the app for production to the `build` folder.
23 | It correctly bundles React in production mode and optimizes the build for the best performance. 24 | 25 | The build is minified and the filenames include the hashes.
26 | Your app is ready to be deployed! 27 | 28 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 29 | 30 | ### `yarn eject` 31 | 32 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 33 | 34 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 35 | 36 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 37 | 38 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 39 | 40 | ## Learn More 41 | 42 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 43 | 44 | To learn React, check out the [React documentation](https://reactjs.org/). 45 | 46 | ### Code Splitting 47 | 48 | This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting 49 | 50 | ### Analyzing the Bundle Size 51 | 52 | This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size 53 | 54 | ### Making a Progressive Web App 55 | 56 | This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app 57 | 58 | ### Advanced Configuration 59 | 60 | This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration 61 | 62 | ### Deployment 63 | 64 | This section has moved here: https://facebook.github.io/create-react-app/docs/deployment 65 | 66 | ### `yarn build` fails to minify 67 | 68 | This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify 69 | -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "client", 3 | "version": "0.1.0", 4 | "private": true, 5 | "proxy": "http://localhost:8000", 6 | "dependencies": { 7 | "@testing-library/jest-dom": "^4.2.4", 8 | "@testing-library/react": "^9.3.2", 9 | "@testing-library/user-event": "^7.1.2", 10 | "react": "^16.13.1", 11 | "react-dom": "^16.13.1", 12 | "react-router-dom": "^5.2.0", 13 | "react-scripts": "3.4.1", 14 | "socket.io-client": "^2.3.0", 15 | "uuid": "^8.2.0" 16 | }, 17 | "scripts": { 18 | "start": "react-scripts start", 19 | "build": "react-scripts build", 20 | "test": "react-scripts test", 21 | "eject": "react-scripts eject" 22 | }, 23 | "eslintConfig": { 24 | "extends": "react-app" 25 | }, 26 | "browserslist": { 27 | "production": [ 28 | ">0.2%", 29 | "not dead", 30 | "not op_mini all" 31 | ], 32 | "development": [ 33 | "last 1 chrome version", 34 | "last 1 firefox version", 35 | "last 1 safari version" 36 | ] 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-with-chaim/webrtc-screen-share/831b816e4ea086d6de244be54489b9325f3b2349/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-with-chaim/webrtc-screen-share/831b816e4ea086d6de244be54489b9325f3b2349/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-with-chaim/webrtc-screen-share/831b816e4ea086d6de244be54489b9325f3b2349/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | height: 40vmin; 7 | pointer-events: none; 8 | } 9 | 10 | @media (prefers-reduced-motion: no-preference) { 11 | .App-logo { 12 | animation: App-logo-spin infinite 20s linear; 13 | } 14 | } 15 | 16 | .App-header { 17 | background-color: #282c34; 18 | min-height: 100vh; 19 | display: flex; 20 | flex-direction: column; 21 | align-items: center; 22 | justify-content: center; 23 | font-size: calc(10px + 2vmin); 24 | color: white; 25 | } 26 | 27 | .App-link { 28 | color: #61dafb; 29 | } 30 | 31 | @keyframes App-logo-spin { 32 | from { 33 | transform: rotate(0deg); 34 | } 35 | to { 36 | transform: rotate(360deg); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { BrowserRouter, Route, Switch } from "react-router-dom"; 3 | import CreateRoom from "./routes/CreateRoom"; 4 | import Room from "./routes/Room"; 5 | import './App.css'; 6 | 7 | function App() { 8 | return ( 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | ); 18 | } 19 | 20 | export default App; 21 | -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from '@testing-library/react'; 3 | import App from './App'; 4 | 5 | test('renders learn react link', () => { 6 | const { getByText } = render(); 7 | const linkElement = getByText(/learn react/i); 8 | expect(linkElement).toBeInTheDocument(); 9 | }); 10 | -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | import * as serviceWorker from './serviceWorker'; 6 | 7 | ReactDOM.render( 8 | 9 | 10 | , 11 | document.getElementById('root') 12 | ); 13 | 14 | // If you want your app to work offline and load faster, you can change 15 | // unregister() to register() below. Note this comes with some pitfalls. 16 | // Learn more about service workers: https://bit.ly/CRA-PWA 17 | serviceWorker.unregister(); 18 | -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /client/src/routes/CreateRoom.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { v1 as uuid } from "uuid"; 3 | 4 | const CreateRoom = (props) => { 5 | function create() { 6 | const id = uuid(); 7 | props.history.push(`/room/${id}`); 8 | } 9 | 10 | return ( 11 | 12 | ); 13 | } 14 | 15 | export default CreateRoom; -------------------------------------------------------------------------------- /client/src/routes/Room.js: -------------------------------------------------------------------------------- 1 | import React, { useRef, useEffect } from "react"; 2 | import io from "socket.io-client"; 3 | 4 | const Room = (props) => { 5 | const userVideo = useRef(); 6 | const partnerVideo = useRef(); 7 | const peerRef = useRef(); 8 | const socketRef = useRef(); 9 | const otherUser = useRef(); 10 | const userStream = useRef(); 11 | const senders = useRef([]); 12 | 13 | useEffect(() => { 14 | navigator.mediaDevices.getUserMedia({ audio: true, video: true }).then(stream => { 15 | userVideo.current.srcObject = stream; 16 | userStream.current = stream; 17 | 18 | socketRef.current = io.connect("/"); 19 | socketRef.current.emit("join room", props.match.params.roomID); 20 | 21 | socketRef.current.on('other user', userID => { 22 | callUser(userID); 23 | otherUser.current = userID; 24 | }); 25 | 26 | socketRef.current.on("user joined", userID => { 27 | otherUser.current = userID; 28 | }); 29 | 30 | socketRef.current.on("offer", handleRecieveCall); 31 | 32 | socketRef.current.on("answer", handleAnswer); 33 | 34 | socketRef.current.on("ice-candidate", handleNewICECandidateMsg); 35 | }); 36 | 37 | }, []); 38 | 39 | function callUser(userID) { 40 | peerRef.current = createPeer(userID); 41 | userStream.current.getTracks().forEach(track => senders.current.push(peerRef.current.addTrack(track, userStream.current))); 42 | } 43 | 44 | function createPeer(userID) { 45 | const peer = new RTCPeerConnection({ 46 | iceServers: [ 47 | { 48 | urls: "stun:stun.stunprotocol.org" 49 | }, 50 | { 51 | urls: 'turn:numb.viagenie.ca', 52 | credential: 'muazkh', 53 | username: 'webrtc@live.com' 54 | }, 55 | ] 56 | }); 57 | 58 | peer.onicecandidate = handleICECandidateEvent; 59 | peer.ontrack = handleTrackEvent; 60 | peer.onnegotiationneeded = () => handleNegotiationNeededEvent(userID); 61 | 62 | return peer; 63 | } 64 | 65 | function handleNegotiationNeededEvent(userID) { 66 | peerRef.current.createOffer().then(offer => { 67 | return peerRef.current.setLocalDescription(offer); 68 | }).then(() => { 69 | const payload = { 70 | target: userID, 71 | caller: socketRef.current.id, 72 | sdp: peerRef.current.localDescription 73 | }; 74 | socketRef.current.emit("offer", payload); 75 | }).catch(e => console.log(e)); 76 | } 77 | 78 | function handleRecieveCall(incoming) { 79 | peerRef.current = createPeer(); 80 | const desc = new RTCSessionDescription(incoming.sdp); 81 | peerRef.current.setRemoteDescription(desc).then(() => { 82 | userStream.current.getTracks().forEach(track => peerRef.current.addTrack(track, userStream.current)); 83 | }).then(() => { 84 | return peerRef.current.createAnswer(); 85 | }).then(answer => { 86 | return peerRef.current.setLocalDescription(answer); 87 | }).then(() => { 88 | const payload = { 89 | target: incoming.caller, 90 | caller: socketRef.current.id, 91 | sdp: peerRef.current.localDescription 92 | } 93 | socketRef.current.emit("answer", payload); 94 | }) 95 | } 96 | 97 | function handleAnswer(message) { 98 | const desc = new RTCSessionDescription(message.sdp); 99 | peerRef.current.setRemoteDescription(desc).catch(e => console.log(e)); 100 | } 101 | 102 | function handleICECandidateEvent(e) { 103 | if (e.candidate) { 104 | const payload = { 105 | target: otherUser.current, 106 | candidate: e.candidate, 107 | } 108 | socketRef.current.emit("ice-candidate", payload); 109 | } 110 | } 111 | 112 | function handleNewICECandidateMsg(incoming) { 113 | const candidate = new RTCIceCandidate(incoming); 114 | 115 | peerRef.current.addIceCandidate(candidate) 116 | .catch(e => console.log(e)); 117 | } 118 | 119 | function handleTrackEvent(e) { 120 | partnerVideo.current.srcObject = e.streams[0]; 121 | }; 122 | 123 | function shareScreen() { 124 | navigator.mediaDevices.getDisplayMedia({ cursor: true }).then(stream => { 125 | const screenTrack = stream.getTracks()[0]; 126 | senders.current.find(sender => sender.track.kind === 'video').replaceTrack(screenTrack); 127 | screenTrack.onended = function() { 128 | senders.current.find(sender => sender.track.kind === "video").replaceTrack(userStream.current.getTracks()[1]); 129 | } 130 | }) 131 | } 132 | 133 | return ( 134 |
135 |
139 | ); 140 | }; 141 | 142 | export default Room; -------------------------------------------------------------------------------- /client/src/serviceWorker.js: -------------------------------------------------------------------------------- 1 | // This optional code is used to register a service worker. 2 | // register() is not called by default. 3 | 4 | // This lets the app load faster on subsequent visits in production, and gives 5 | // it offline capabilities. However, it also means that developers (and users) 6 | // will only see deployed updates on subsequent visits to a page, after all the 7 | // existing tabs open on the page have been closed, since previously cached 8 | // resources are updated in the background. 9 | 10 | // To learn more about the benefits of this model and instructions on how to 11 | // opt-in, read https://bit.ly/CRA-PWA 12 | 13 | const isLocalhost = Boolean( 14 | window.location.hostname === 'localhost' || 15 | // [::1] is the IPv6 localhost address. 16 | window.location.hostname === '[::1]' || 17 | // 127.0.0.0/8 are considered localhost for IPv4. 18 | window.location.hostname.match( 19 | /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ 20 | ) 21 | ); 22 | 23 | export function register(config) { 24 | if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { 25 | // The URL constructor is available in all browsers that support SW. 26 | const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href); 27 | if (publicUrl.origin !== window.location.origin) { 28 | // Our service worker won't work if PUBLIC_URL is on a different origin 29 | // from what our page is served on. This might happen if a CDN is used to 30 | // serve assets; see https://github.com/facebook/create-react-app/issues/2374 31 | return; 32 | } 33 | 34 | window.addEventListener('load', () => { 35 | const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; 36 | 37 | if (isLocalhost) { 38 | // This is running on localhost. Let's check if a service worker still exists or not. 39 | checkValidServiceWorker(swUrl, config); 40 | 41 | // Add some additional logging to localhost, pointing developers to the 42 | // service worker/PWA documentation. 43 | navigator.serviceWorker.ready.then(() => { 44 | console.log( 45 | 'This web app is being served cache-first by a service ' + 46 | 'worker. To learn more, visit https://bit.ly/CRA-PWA' 47 | ); 48 | }); 49 | } else { 50 | // Is not localhost. Just register service worker 51 | registerValidSW(swUrl, config); 52 | } 53 | }); 54 | } 55 | } 56 | 57 | function registerValidSW(swUrl, config) { 58 | navigator.serviceWorker 59 | .register(swUrl) 60 | .then(registration => { 61 | registration.onupdatefound = () => { 62 | const installingWorker = registration.installing; 63 | if (installingWorker == null) { 64 | return; 65 | } 66 | installingWorker.onstatechange = () => { 67 | if (installingWorker.state === 'installed') { 68 | if (navigator.serviceWorker.controller) { 69 | // At this point, the updated precached content has been fetched, 70 | // but the previous service worker will still serve the older 71 | // content until all client tabs are closed. 72 | console.log( 73 | 'New content is available and will be used when all ' + 74 | 'tabs for this page are closed. See https://bit.ly/CRA-PWA.' 75 | ); 76 | 77 | // Execute callback 78 | if (config && config.onUpdate) { 79 | config.onUpdate(registration); 80 | } 81 | } else { 82 | // At this point, everything has been precached. 83 | // It's the perfect time to display a 84 | // "Content is cached for offline use." message. 85 | console.log('Content is cached for offline use.'); 86 | 87 | // Execute callback 88 | if (config && config.onSuccess) { 89 | config.onSuccess(registration); 90 | } 91 | } 92 | } 93 | }; 94 | }; 95 | }) 96 | .catch(error => { 97 | console.error('Error during service worker registration:', error); 98 | }); 99 | } 100 | 101 | function checkValidServiceWorker(swUrl, config) { 102 | // Check if the service worker can be found. If it can't reload the page. 103 | fetch(swUrl, { 104 | headers: { 'Service-Worker': 'script' }, 105 | }) 106 | .then(response => { 107 | // Ensure service worker exists, and that we really are getting a JS file. 108 | const contentType = response.headers.get('content-type'); 109 | if ( 110 | response.status === 404 || 111 | (contentType != null && contentType.indexOf('javascript') === -1) 112 | ) { 113 | // No service worker found. Probably a different app. Reload the page. 114 | navigator.serviceWorker.ready.then(registration => { 115 | registration.unregister().then(() => { 116 | window.location.reload(); 117 | }); 118 | }); 119 | } else { 120 | // Service worker found. Proceed as normal. 121 | registerValidSW(swUrl, config); 122 | } 123 | }) 124 | .catch(() => { 125 | console.log( 126 | 'No internet connection found. App is running in offline mode.' 127 | ); 128 | }); 129 | } 130 | 131 | export function unregister() { 132 | if ('serviceWorker' in navigator) { 133 | navigator.serviceWorker.ready 134 | .then(registration => { 135 | registration.unregister(); 136 | }) 137 | .catch(error => { 138 | console.error(error.message); 139 | }); 140 | } 141 | } 142 | -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom/extend-expect'; 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "video-chat", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "dependencies": { 7 | "express": "^4.17.1", 8 | "socket.io": "^2.3.0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | const express = require("express"); 2 | const http = require("http"); 3 | const app = express(); 4 | const server = http.createServer(app); 5 | const socket = require("socket.io"); 6 | const io = socket(server); 7 | 8 | const rooms = {}; 9 | 10 | io.on("connection", socket => { 11 | socket.on("join room", roomID => { 12 | if (rooms[roomID]) { 13 | rooms[roomID].push(socket.id); 14 | } else { 15 | rooms[roomID] = [socket.id]; 16 | } 17 | const otherUser = rooms[roomID].find(id => id !== socket.id); 18 | if (otherUser) { 19 | socket.emit("other user", otherUser); 20 | socket.to(otherUser).emit("user joined", socket.id); 21 | } 22 | }); 23 | 24 | socket.on("offer", payload => { 25 | io.to(payload.target).emit("offer", payload); 26 | }); 27 | 28 | socket.on("answer", payload => { 29 | io.to(payload.target).emit("answer", payload); 30 | }); 31 | 32 | socket.on("ice-candidate", incoming => { 33 | io.to(incoming.target).emit("ice-candidate", incoming.candidate); 34 | }); 35 | }); 36 | 37 | 38 | server.listen(8000, () => console.log('server is running on port 8000')); 39 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | accepts@~1.3.4, accepts@~1.3.7: 6 | version "1.3.7" 7 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 8 | integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== 9 | dependencies: 10 | mime-types "~2.1.24" 11 | negotiator "0.6.2" 12 | 13 | after@0.8.2: 14 | version "0.8.2" 15 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" 16 | integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= 17 | 18 | array-flatten@1.1.1: 19 | version "1.1.1" 20 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 21 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 22 | 23 | arraybuffer.slice@~0.0.7: 24 | version "0.0.7" 25 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" 26 | integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== 27 | 28 | async-limiter@~1.0.0: 29 | version "1.0.1" 30 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" 31 | integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== 32 | 33 | backo2@1.0.2: 34 | version "1.0.2" 35 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" 36 | integrity sha1-MasayLEpNjRj41s+u2n038+6eUc= 37 | 38 | base64-arraybuffer@0.1.5: 39 | version "0.1.5" 40 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" 41 | integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg= 42 | 43 | base64id@2.0.0: 44 | version "2.0.0" 45 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6" 46 | integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog== 47 | 48 | better-assert@~1.0.0: 49 | version "1.0.2" 50 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" 51 | integrity sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI= 52 | dependencies: 53 | callsite "1.0.0" 54 | 55 | blob@0.0.5: 56 | version "0.0.5" 57 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683" 58 | integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig== 59 | 60 | body-parser@1.19.0: 61 | version "1.19.0" 62 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" 63 | integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== 64 | dependencies: 65 | bytes "3.1.0" 66 | content-type "~1.0.4" 67 | debug "2.6.9" 68 | depd "~1.1.2" 69 | http-errors "1.7.2" 70 | iconv-lite "0.4.24" 71 | on-finished "~2.3.0" 72 | qs "6.7.0" 73 | raw-body "2.4.0" 74 | type-is "~1.6.17" 75 | 76 | bytes@3.1.0: 77 | version "3.1.0" 78 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 79 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 80 | 81 | callsite@1.0.0: 82 | version "1.0.0" 83 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 84 | integrity sha1-KAOY5dZkvXQDi28JBRU+borxvCA= 85 | 86 | component-bind@1.0.0: 87 | version "1.0.0" 88 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" 89 | integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E= 90 | 91 | component-emitter@1.2.1: 92 | version "1.2.1" 93 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 94 | integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= 95 | 96 | component-emitter@~1.3.0: 97 | version "1.3.0" 98 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 99 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 100 | 101 | component-inherit@0.0.3: 102 | version "0.0.3" 103 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 104 | integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM= 105 | 106 | content-disposition@0.5.3: 107 | version "0.5.3" 108 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" 109 | integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== 110 | dependencies: 111 | safe-buffer "5.1.2" 112 | 113 | content-type@~1.0.4: 114 | version "1.0.4" 115 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 116 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 117 | 118 | cookie-signature@1.0.6: 119 | version "1.0.6" 120 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 121 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= 122 | 123 | cookie@0.3.1: 124 | version "0.3.1" 125 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 126 | integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= 127 | 128 | cookie@0.4.0: 129 | version "0.4.0" 130 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" 131 | integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== 132 | 133 | debug@2.6.9: 134 | version "2.6.9" 135 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 136 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 137 | dependencies: 138 | ms "2.0.0" 139 | 140 | debug@~3.1.0: 141 | version "3.1.0" 142 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 143 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== 144 | dependencies: 145 | ms "2.0.0" 146 | 147 | debug@~4.1.0: 148 | version "4.1.1" 149 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 150 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 151 | dependencies: 152 | ms "^2.1.1" 153 | 154 | depd@~1.1.2: 155 | version "1.1.2" 156 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 157 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 158 | 159 | destroy@~1.0.4: 160 | version "1.0.4" 161 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 162 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 163 | 164 | ee-first@1.1.1: 165 | version "1.1.1" 166 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 167 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 168 | 169 | encodeurl@~1.0.2: 170 | version "1.0.2" 171 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 172 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 173 | 174 | engine.io-client@~3.4.0: 175 | version "3.4.3" 176 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.4.3.tgz#192d09865403e3097e3575ebfeb3861c4d01a66c" 177 | integrity sha512-0NGY+9hioejTEJCaSJZfWZLk4FPI9dN+1H1C4+wj2iuFba47UgZbJzfWs4aNFajnX/qAaYKbe2lLTfEEWzCmcw== 178 | dependencies: 179 | component-emitter "~1.3.0" 180 | component-inherit "0.0.3" 181 | debug "~4.1.0" 182 | engine.io-parser "~2.2.0" 183 | has-cors "1.1.0" 184 | indexof "0.0.1" 185 | parseqs "0.0.5" 186 | parseuri "0.0.5" 187 | ws "~6.1.0" 188 | xmlhttprequest-ssl "~1.5.4" 189 | yeast "0.1.2" 190 | 191 | engine.io-parser@~2.2.0: 192 | version "2.2.0" 193 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.2.0.tgz#312c4894f57d52a02b420868da7b5c1c84af80ed" 194 | integrity sha512-6I3qD9iUxotsC5HEMuuGsKA0cXerGz+4uGcXQEkfBidgKf0amsjrrtwcbwK/nzpZBxclXlV7gGl9dgWvu4LF6w== 195 | dependencies: 196 | after "0.8.2" 197 | arraybuffer.slice "~0.0.7" 198 | base64-arraybuffer "0.1.5" 199 | blob "0.0.5" 200 | has-binary2 "~1.0.2" 201 | 202 | engine.io@~3.4.0: 203 | version "3.4.2" 204 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.4.2.tgz#8fc84ee00388e3e228645e0a7d3dfaeed5bd122c" 205 | integrity sha512-b4Q85dFkGw+TqgytGPrGgACRUhsdKc9S9ErRAXpPGy/CXKs4tYoHDkvIRdsseAF7NjfVwjRFIn6KTnbw7LwJZg== 206 | dependencies: 207 | accepts "~1.3.4" 208 | base64id "2.0.0" 209 | cookie "0.3.1" 210 | debug "~4.1.0" 211 | engine.io-parser "~2.2.0" 212 | ws "^7.1.2" 213 | 214 | escape-html@~1.0.3: 215 | version "1.0.3" 216 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 217 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 218 | 219 | etag@~1.8.1: 220 | version "1.8.1" 221 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 222 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 223 | 224 | express@^4.17.1: 225 | version "4.17.1" 226 | resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" 227 | integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== 228 | dependencies: 229 | accepts "~1.3.7" 230 | array-flatten "1.1.1" 231 | body-parser "1.19.0" 232 | content-disposition "0.5.3" 233 | content-type "~1.0.4" 234 | cookie "0.4.0" 235 | cookie-signature "1.0.6" 236 | debug "2.6.9" 237 | depd "~1.1.2" 238 | encodeurl "~1.0.2" 239 | escape-html "~1.0.3" 240 | etag "~1.8.1" 241 | finalhandler "~1.1.2" 242 | fresh "0.5.2" 243 | merge-descriptors "1.0.1" 244 | methods "~1.1.2" 245 | on-finished "~2.3.0" 246 | parseurl "~1.3.3" 247 | path-to-regexp "0.1.7" 248 | proxy-addr "~2.0.5" 249 | qs "6.7.0" 250 | range-parser "~1.2.1" 251 | safe-buffer "5.1.2" 252 | send "0.17.1" 253 | serve-static "1.14.1" 254 | setprototypeof "1.1.1" 255 | statuses "~1.5.0" 256 | type-is "~1.6.18" 257 | utils-merge "1.0.1" 258 | vary "~1.1.2" 259 | 260 | finalhandler@~1.1.2: 261 | version "1.1.2" 262 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" 263 | integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== 264 | dependencies: 265 | debug "2.6.9" 266 | encodeurl "~1.0.2" 267 | escape-html "~1.0.3" 268 | on-finished "~2.3.0" 269 | parseurl "~1.3.3" 270 | statuses "~1.5.0" 271 | unpipe "~1.0.0" 272 | 273 | forwarded@~0.1.2: 274 | version "0.1.2" 275 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 276 | integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= 277 | 278 | fresh@0.5.2: 279 | version "0.5.2" 280 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 281 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 282 | 283 | has-binary2@~1.0.2: 284 | version "1.0.3" 285 | resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" 286 | integrity sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw== 287 | dependencies: 288 | isarray "2.0.1" 289 | 290 | has-cors@1.1.0: 291 | version "1.1.0" 292 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" 293 | integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk= 294 | 295 | http-errors@1.7.2: 296 | version "1.7.2" 297 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" 298 | integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== 299 | dependencies: 300 | depd "~1.1.2" 301 | inherits "2.0.3" 302 | setprototypeof "1.1.1" 303 | statuses ">= 1.5.0 < 2" 304 | toidentifier "1.0.0" 305 | 306 | http-errors@~1.7.2: 307 | version "1.7.3" 308 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" 309 | integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== 310 | dependencies: 311 | depd "~1.1.2" 312 | inherits "2.0.4" 313 | setprototypeof "1.1.1" 314 | statuses ">= 1.5.0 < 2" 315 | toidentifier "1.0.0" 316 | 317 | iconv-lite@0.4.24: 318 | version "0.4.24" 319 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 320 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 321 | dependencies: 322 | safer-buffer ">= 2.1.2 < 3" 323 | 324 | indexof@0.0.1: 325 | version "0.0.1" 326 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 327 | integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= 328 | 329 | inherits@2.0.3: 330 | version "2.0.3" 331 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 332 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 333 | 334 | inherits@2.0.4: 335 | version "2.0.4" 336 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 337 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 338 | 339 | ipaddr.js@1.9.1: 340 | version "1.9.1" 341 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" 342 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== 343 | 344 | isarray@2.0.1: 345 | version "2.0.1" 346 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" 347 | integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= 348 | 349 | media-typer@0.3.0: 350 | version "0.3.0" 351 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 352 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 353 | 354 | merge-descriptors@1.0.1: 355 | version "1.0.1" 356 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 357 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 358 | 359 | methods@~1.1.2: 360 | version "1.1.2" 361 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 362 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 363 | 364 | mime-db@1.44.0: 365 | version "1.44.0" 366 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" 367 | integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== 368 | 369 | mime-types@~2.1.24: 370 | version "2.1.27" 371 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" 372 | integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== 373 | dependencies: 374 | mime-db "1.44.0" 375 | 376 | mime@1.6.0: 377 | version "1.6.0" 378 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 379 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 380 | 381 | ms@2.0.0: 382 | version "2.0.0" 383 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 384 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 385 | 386 | ms@2.1.1: 387 | version "2.1.1" 388 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 389 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 390 | 391 | ms@^2.1.1: 392 | version "2.1.2" 393 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 394 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 395 | 396 | negotiator@0.6.2: 397 | version "0.6.2" 398 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 399 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 400 | 401 | object-component@0.0.3: 402 | version "0.0.3" 403 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" 404 | integrity sha1-8MaapQ78lbhmwYb0AKM3acsvEpE= 405 | 406 | on-finished@~2.3.0: 407 | version "2.3.0" 408 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 409 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 410 | dependencies: 411 | ee-first "1.1.1" 412 | 413 | parseqs@0.0.5: 414 | version "0.0.5" 415 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" 416 | integrity sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0= 417 | dependencies: 418 | better-assert "~1.0.0" 419 | 420 | parseuri@0.0.5: 421 | version "0.0.5" 422 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" 423 | integrity sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo= 424 | dependencies: 425 | better-assert "~1.0.0" 426 | 427 | parseurl@~1.3.3: 428 | version "1.3.3" 429 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 430 | integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 431 | 432 | path-to-regexp@0.1.7: 433 | version "0.1.7" 434 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 435 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= 436 | 437 | proxy-addr@~2.0.5: 438 | version "2.0.6" 439 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" 440 | integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== 441 | dependencies: 442 | forwarded "~0.1.2" 443 | ipaddr.js "1.9.1" 444 | 445 | qs@6.7.0: 446 | version "6.7.0" 447 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" 448 | integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== 449 | 450 | range-parser@~1.2.1: 451 | version "1.2.1" 452 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" 453 | integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== 454 | 455 | raw-body@2.4.0: 456 | version "2.4.0" 457 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" 458 | integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== 459 | dependencies: 460 | bytes "3.1.0" 461 | http-errors "1.7.2" 462 | iconv-lite "0.4.24" 463 | unpipe "1.0.0" 464 | 465 | safe-buffer@5.1.2: 466 | version "5.1.2" 467 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 468 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 469 | 470 | "safer-buffer@>= 2.1.2 < 3": 471 | version "2.1.2" 472 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 473 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 474 | 475 | send@0.17.1: 476 | version "0.17.1" 477 | resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" 478 | integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== 479 | dependencies: 480 | debug "2.6.9" 481 | depd "~1.1.2" 482 | destroy "~1.0.4" 483 | encodeurl "~1.0.2" 484 | escape-html "~1.0.3" 485 | etag "~1.8.1" 486 | fresh "0.5.2" 487 | http-errors "~1.7.2" 488 | mime "1.6.0" 489 | ms "2.1.1" 490 | on-finished "~2.3.0" 491 | range-parser "~1.2.1" 492 | statuses "~1.5.0" 493 | 494 | serve-static@1.14.1: 495 | version "1.14.1" 496 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" 497 | integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== 498 | dependencies: 499 | encodeurl "~1.0.2" 500 | escape-html "~1.0.3" 501 | parseurl "~1.3.3" 502 | send "0.17.1" 503 | 504 | setprototypeof@1.1.1: 505 | version "1.1.1" 506 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 507 | integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== 508 | 509 | socket.io-adapter@~1.1.0: 510 | version "1.1.2" 511 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz#ab3f0d6f66b8fc7fca3959ab5991f82221789be9" 512 | integrity sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g== 513 | 514 | socket.io-client@2.3.0: 515 | version "2.3.0" 516 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.3.0.tgz#14d5ba2e00b9bcd145ae443ab96b3f86cbcc1bb4" 517 | integrity sha512-cEQQf24gET3rfhxZ2jJ5xzAOo/xhZwK+mOqtGRg5IowZsMgwvHwnf/mCRapAAkadhM26y+iydgwsXGObBB5ZdA== 518 | dependencies: 519 | backo2 "1.0.2" 520 | base64-arraybuffer "0.1.5" 521 | component-bind "1.0.0" 522 | component-emitter "1.2.1" 523 | debug "~4.1.0" 524 | engine.io-client "~3.4.0" 525 | has-binary2 "~1.0.2" 526 | has-cors "1.1.0" 527 | indexof "0.0.1" 528 | object-component "0.0.3" 529 | parseqs "0.0.5" 530 | parseuri "0.0.5" 531 | socket.io-parser "~3.3.0" 532 | to-array "0.1.4" 533 | 534 | socket.io-parser@~3.3.0: 535 | version "3.3.0" 536 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.3.0.tgz#2b52a96a509fdf31440ba40fed6094c7d4f1262f" 537 | integrity sha512-hczmV6bDgdaEbVqhAeVMM/jfUfzuEZHsQg6eOmLgJht6G3mPKMxYm75w2+qhAQZ+4X+1+ATZ+QFKeOZD5riHng== 538 | dependencies: 539 | component-emitter "1.2.1" 540 | debug "~3.1.0" 541 | isarray "2.0.1" 542 | 543 | socket.io-parser@~3.4.0: 544 | version "3.4.1" 545 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.4.1.tgz#b06af838302975837eab2dc980037da24054d64a" 546 | integrity sha512-11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A== 547 | dependencies: 548 | component-emitter "1.2.1" 549 | debug "~4.1.0" 550 | isarray "2.0.1" 551 | 552 | socket.io@^2.3.0: 553 | version "2.3.0" 554 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.3.0.tgz#cd762ed6a4faeca59bc1f3e243c0969311eb73fb" 555 | integrity sha512-2A892lrj0GcgR/9Qk81EaY2gYhCBxurV0PfmmESO6p27QPrUK1J3zdns+5QPqvUYK2q657nSj0guoIil9+7eFg== 556 | dependencies: 557 | debug "~4.1.0" 558 | engine.io "~3.4.0" 559 | has-binary2 "~1.0.2" 560 | socket.io-adapter "~1.1.0" 561 | socket.io-client "2.3.0" 562 | socket.io-parser "~3.4.0" 563 | 564 | "statuses@>= 1.5.0 < 2", statuses@~1.5.0: 565 | version "1.5.0" 566 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 567 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 568 | 569 | to-array@0.1.4: 570 | version "0.1.4" 571 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" 572 | integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA= 573 | 574 | toidentifier@1.0.0: 575 | version "1.0.0" 576 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 577 | integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== 578 | 579 | type-is@~1.6.17, type-is@~1.6.18: 580 | version "1.6.18" 581 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 582 | integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== 583 | dependencies: 584 | media-typer "0.3.0" 585 | mime-types "~2.1.24" 586 | 587 | unpipe@1.0.0, unpipe@~1.0.0: 588 | version "1.0.0" 589 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 590 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 591 | 592 | utils-merge@1.0.1: 593 | version "1.0.1" 594 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 595 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 596 | 597 | vary@~1.1.2: 598 | version "1.1.2" 599 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 600 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 601 | 602 | ws@^7.1.2: 603 | version "7.3.0" 604 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.0.tgz#4b2f7f219b3d3737bc1a2fbf145d825b94d38ffd" 605 | integrity sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w== 606 | 607 | ws@~6.1.0: 608 | version "6.1.4" 609 | resolved "https://registry.yarnpkg.com/ws/-/ws-6.1.4.tgz#5b5c8800afab925e94ccb29d153c8d02c1776ef9" 610 | integrity sha512-eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA== 611 | dependencies: 612 | async-limiter "~1.0.0" 613 | 614 | xmlhttprequest-ssl@~1.5.4: 615 | version "1.5.5" 616 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" 617 | integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4= 618 | 619 | yeast@0.1.2: 620 | version "0.1.2" 621 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" 622 | integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= 623 | --------------------------------------------------------------------------------