├── .gitattributes ├── .github ├── FUNDING.yml └── build.js ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Procfile ├── README.md ├── data.json ├── index.js ├── package.json ├── public ├── become_a_patron_button.png ├── favicon.ico ├── guide.html ├── index.html └── style.css ├── seed.js ├── src └── app.js ├── templates ├── GUIDE.md ├── index.html └── layout.html └── test └── app.js /.gitattributes: -------------------------------------------------------------------------------- 1 | public/* linguist-documentation 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/.github/build.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | **/*.log -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/README.md -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/data.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/package.json -------------------------------------------------------------------------------- /public/become_a_patron_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/public/become_a_patron_button.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/public/guide.html -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/public/index.html -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/public/style.css -------------------------------------------------------------------------------- /seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/seed.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/src/app.js -------------------------------------------------------------------------------- /templates/GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/templates/GUIDE.md -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/templates/layout.html -------------------------------------------------------------------------------- /test/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typicode/jsonplaceholder/HEAD/test/app.js --------------------------------------------------------------------------------