├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── slacker │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app ├── actions │ ├── actionTypes.js │ └── actions.js ├── components │ ├── discover.js │ ├── eachSong.js │ ├── home.js │ ├── home2.js │ ├── index.js │ ├── main.js │ ├── search.js │ ├── splash.js │ ├── stations.js │ ├── vibe.js │ └── widgets │ │ ├── homeW.js │ │ ├── nav.js │ │ ├── slide1.js │ │ ├── slide2.js │ │ └── slide3.js ├── container │ └── index.js ├── images │ ├── Screen Shot 2016-09-18 at 8.05.38 PM.png │ ├── back.png │ ├── childish.png │ ├── image1.png │ ├── image2.png │ ├── image3.png │ ├── image4.png │ ├── image5.png │ ├── image6.png │ ├── image7.png │ ├── jayAkon.png │ ├── logo1.png │ ├── logo2.png │ ├── logoJ.jpg │ ├── overlay.png │ ├── overlay2.png │ ├── party.png │ ├── photo-1429279746097-e492ee010d54.jpeg │ ├── photo-1441123100240-f9f3f77ed41b.jpeg │ ├── popHit.png │ ├── rhianna.png │ ├── royalty.jpg │ ├── scotty.png │ ├── showme.png │ ├── slack2014.png │ ├── sober.png │ ├── theInternet.jpg │ ├── top40.png │ └── zak.png ├── reducers │ └── index.js └── sounds │ └── showme.mp3 ├── index.android.js ├── index.ios.js ├── ios ├── Slacker.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Slacker.xcscheme ├── Slacker │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── SlackerTests │ ├── Info.plist │ └── SlackerTests.m └── showme.mp3 └── package.json /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Slacker 2 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/slacker/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/java/com/slacker/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/slacker/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/java/com/slacker/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/actions/actionTypes.js -------------------------------------------------------------------------------- /app/actions/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/actions/actions.js -------------------------------------------------------------------------------- /app/components/discover.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/eachSong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/eachSong.js -------------------------------------------------------------------------------- /app/components/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/home.js -------------------------------------------------------------------------------- /app/components/home2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/index.js -------------------------------------------------------------------------------- /app/components/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/main.js -------------------------------------------------------------------------------- /app/components/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/search.js -------------------------------------------------------------------------------- /app/components/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/splash.js -------------------------------------------------------------------------------- /app/components/stations.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/vibe.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/widgets/homeW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/widgets/homeW.js -------------------------------------------------------------------------------- /app/components/widgets/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/widgets/nav.js -------------------------------------------------------------------------------- /app/components/widgets/slide1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/widgets/slide1.js -------------------------------------------------------------------------------- /app/components/widgets/slide2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/widgets/slide2.js -------------------------------------------------------------------------------- /app/components/widgets/slide3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/components/widgets/slide3.js -------------------------------------------------------------------------------- /app/container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/container/index.js -------------------------------------------------------------------------------- /app/images/Screen Shot 2016-09-18 at 8.05.38 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/Screen Shot 2016-09-18 at 8.05.38 PM.png -------------------------------------------------------------------------------- /app/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/back.png -------------------------------------------------------------------------------- /app/images/childish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/childish.png -------------------------------------------------------------------------------- /app/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/image1.png -------------------------------------------------------------------------------- /app/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/image2.png -------------------------------------------------------------------------------- /app/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/image3.png -------------------------------------------------------------------------------- /app/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/image4.png -------------------------------------------------------------------------------- /app/images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/image5.png -------------------------------------------------------------------------------- /app/images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/image6.png -------------------------------------------------------------------------------- /app/images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/image7.png -------------------------------------------------------------------------------- /app/images/jayAkon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/jayAkon.png -------------------------------------------------------------------------------- /app/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/logo1.png -------------------------------------------------------------------------------- /app/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/logo2.png -------------------------------------------------------------------------------- /app/images/logoJ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/logoJ.jpg -------------------------------------------------------------------------------- /app/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/overlay.png -------------------------------------------------------------------------------- /app/images/overlay2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/overlay2.png -------------------------------------------------------------------------------- /app/images/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/party.png -------------------------------------------------------------------------------- /app/images/photo-1429279746097-e492ee010d54.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/photo-1429279746097-e492ee010d54.jpeg -------------------------------------------------------------------------------- /app/images/photo-1441123100240-f9f3f77ed41b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/photo-1441123100240-f9f3f77ed41b.jpeg -------------------------------------------------------------------------------- /app/images/popHit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/popHit.png -------------------------------------------------------------------------------- /app/images/rhianna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/rhianna.png -------------------------------------------------------------------------------- /app/images/royalty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/royalty.jpg -------------------------------------------------------------------------------- /app/images/scotty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/scotty.png -------------------------------------------------------------------------------- /app/images/showme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/showme.png -------------------------------------------------------------------------------- /app/images/slack2014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/slack2014.png -------------------------------------------------------------------------------- /app/images/sober.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/sober.png -------------------------------------------------------------------------------- /app/images/theInternet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/theInternet.jpg -------------------------------------------------------------------------------- /app/images/top40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/top40.png -------------------------------------------------------------------------------- /app/images/zak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/images/zak.png -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /app/sounds/showme.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/app/sounds/showme.mp3 -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/Slacker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/Slacker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Slacker.xcodeproj/xcshareddata/xcschemes/Slacker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/Slacker.xcodeproj/xcshareddata/xcschemes/Slacker.xcscheme -------------------------------------------------------------------------------- /ios/Slacker/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/Slacker/AppDelegate.h -------------------------------------------------------------------------------- /ios/Slacker/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/Slacker/AppDelegate.m -------------------------------------------------------------------------------- /ios/Slacker/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/Slacker/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/Slacker/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/Slacker/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Slacker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/Slacker/Info.plist -------------------------------------------------------------------------------- /ios/Slacker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/Slacker/main.m -------------------------------------------------------------------------------- /ios/SlackerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/SlackerTests/Info.plist -------------------------------------------------------------------------------- /ios/SlackerTests/SlackerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/SlackerTests/SlackerTests.m -------------------------------------------------------------------------------- /ios/showme.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/ios/showme.mp3 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuelOkoroShow/Slacker/HEAD/package.json --------------------------------------------------------------------------------