UNPKG

json-server-setup

Version:

A simple setup for a lightweight JSON-based REST API using json-server.

49 lines 1.03 kB
{ "name": "json-server-setup", "version": "1.0.4", "description": "A simple setup for a lightweight JSON-based REST API using json-server.", "author": "wathika-eng", "engines": { "node": ">=16.0.0" }, "main": "index.js", "scripts": { "start": "nodemon index.js", "dev": "nodemon index.js", "test": "jest" }, "keywords": [ "json", "server", "rest-api", "mock-api", "db.json", "json-server" ], "license": "MIT", "dependencies": { "cors": "^2.8.5", "json-server": "^0.17.1", "yargs": "^17.7.2" }, "bin": { "json-server-setup": "./index.js" }, "files": [ "index.js", "react/", "README.md" ], "devDependencies": { "jest": "^29.7.0", "nodemon": "^3.1.7" }, "repository": { "type": "git", "url": "https://github.com/wathika-eng/json-server-setup.git" }, "bugs": { "url": "https://github.com/wathika-eng/json-server-setup/issues" }, "homepage": "https://github.com/wathika-eng/json-server-setup#readme" }