├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── LICENSE ├── package.json ├── readme.md ├── src ├── index.ts ├── spotifyClient.ts └── utils.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuckJonas/spotify-fp-ts-example/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .env 4 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuckJonas/spotify-fp-ts-example/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuckJonas/spotify-fp-ts-example/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuckJonas/spotify-fp-ts-example/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuckJonas/spotify-fp-ts-example/HEAD/readme.md -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuckJonas/spotify-fp-ts-example/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/spotifyClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuckJonas/spotify-fp-ts-example/HEAD/src/spotifyClient.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuckJonas/spotify-fp-ts-example/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChuckJonas/spotify-fp-ts-example/HEAD/tsconfig.json --------------------------------------------------------------------------------