├── .DS_Store ├── .gitignore ├── .idea ├── angularattack2017-manishbisht.iml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE.md ├── README-OLD.md ├── README.md ├── build ├── CNAME ├── asset-manifest.json ├── index.html ├── manifest.json ├── service-worker.js └── static │ ├── css │ ├── main.a2b7b0b6.chunk.css │ └── main.a2b7b0b6.chunk.css.map │ └── js │ ├── 2.e57e28e5.chunk.js │ ├── 2.e57e28e5.chunk.js.map │ ├── runtime~main.a8a9905a.js │ └── runtime~main.a8a9905a.js.map ├── package-lock.json ├── package.json ├── public ├── .DS_Store ├── CNAME ├── index.html ├── logo.png └── manifest.json ├── src ├── components │ ├── App.js │ ├── common │ │ └── Header.js │ └── pages │ │ ├── Home.js │ │ └── Search.js ├── css │ └── index.css ├── index.js └── registerServiceWorker.js └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishbisht/ngDownloader/45a7ec43426f75cac2698370f0dbfe58bd5958b8/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | build -------------------------------------------------------------------------------- /.idea/angularattack2017-manishbisht.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 113 | 114 | 115 | 116 | <a 117 | 118 | 119 | 120 | 122 | 123 | 141 | 142 | 143 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 |