├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── app.json ├── backend ├── backend.ts ├── clientInfo.ts ├── clientVersionValidator.ts ├── index.ts ├── player.ts ├── socket.ts └── web-shared │ └── songInfo.ts ├── config.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── public ├── fonts │ └── GothamBold.ttf └── images │ ├── Github.png │ ├── Instruction1.png │ ├── Instruction2.png │ ├── Instruction3.png │ ├── NoSong.png │ └── Playing.gif ├── src ├── components │ ├── clientList.tsx │ ├── header.tsx │ └── song.tsx ├── pages │ ├── _app.tsx │ ├── index.tsx │ └── instructions.tsx └── styles │ ├── ClientList.module.css │ ├── Header.module.css │ ├── Index.module.css │ ├── Instructions.module.css │ ├── Song.module.css │ ├── Spot.module.css │ └── globals.css ├── tsconfig.json ├── tsconfig.server.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/app.json -------------------------------------------------------------------------------- /backend/backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/backend/backend.ts -------------------------------------------------------------------------------- /backend/clientInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/backend/clientInfo.ts -------------------------------------------------------------------------------- /backend/clientVersionValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/backend/clientVersionValidator.ts -------------------------------------------------------------------------------- /backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/backend/index.ts -------------------------------------------------------------------------------- /backend/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/backend/player.ts -------------------------------------------------------------------------------- /backend/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/backend/socket.ts -------------------------------------------------------------------------------- /backend/web-shared/songInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/backend/web-shared/songInfo.ts -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/config.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/package.json -------------------------------------------------------------------------------- /public/fonts/GothamBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/public/fonts/GothamBold.ttf -------------------------------------------------------------------------------- /public/images/Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/public/images/Github.png -------------------------------------------------------------------------------- /public/images/Instruction1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/public/images/Instruction1.png -------------------------------------------------------------------------------- /public/images/Instruction2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/public/images/Instruction2.png -------------------------------------------------------------------------------- /public/images/Instruction3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/public/images/Instruction3.png -------------------------------------------------------------------------------- /public/images/NoSong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/public/images/NoSong.png -------------------------------------------------------------------------------- /public/images/Playing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/public/images/Playing.gif -------------------------------------------------------------------------------- /src/components/clientList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/components/clientList.tsx -------------------------------------------------------------------------------- /src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/components/header.tsx -------------------------------------------------------------------------------- /src/components/song.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/components/song.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/instructions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/pages/instructions.tsx -------------------------------------------------------------------------------- /src/styles/ClientList.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/styles/ClientList.module.css -------------------------------------------------------------------------------- /src/styles/Header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/styles/Header.module.css -------------------------------------------------------------------------------- /src/styles/Index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/styles/Index.module.css -------------------------------------------------------------------------------- /src/styles/Instructions.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/Song.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/styles/Song.module.css -------------------------------------------------------------------------------- /src/styles/Spot.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/styles/Spot.module.css -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/tsconfig.server.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlafyDev/spotify-listen-together-server/HEAD/yarn.lock --------------------------------------------------------------------------------