├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrofuturejosh/react-modular-audio-player/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | webpack.config.js 2 | .babelrc 3 | node_modules 4 | build/src 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrofuturejosh/react-modular-audio-player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrofuturejosh/react-modular-audio-player/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrofuturejosh/react-modular-audio-player/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retrofuturejosh/react-modular-audio-player/HEAD/webpack.config.js --------------------------------------------------------------------------------