Files
Quick-API/package.json
MasterAcnolo 1a5a7fa7e1 feat: initial release of Quick API
Express server that automatically generates REST endpoints from JSON files.
2026-05-30 23:20:25 +02:00

16 lines
360 B
JSON

{
"name": "quick-api",
"version": "1.0.0",
"description": "API Development Tool. Drop a JSON file in data/, start the server, consume the API.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node src/index.js"
},
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2"
}
}