├── .gitignore └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | db.json 2 | node_modules -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "json-server-x", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": "json-server --watch db.json --port 3080 -H 0.0.0.0" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/timathon/json-server-x.git" 13 | }, 14 | "keywords": [], 15 | "author": "", 16 | "license": "ISC", 17 | "bugs": { 18 | "url": "https://github.com/timathon/json-server-x/issues" 19 | }, 20 | "homepage": "https://github.com/timathon/json-server-x#readme", 21 | "dependencies": { 22 | "json-server": "^0.15.0" 23 | } 24 | } 25 | --------------------------------------------------------------------------------