mirror of
https://github.com/MasterAcnolo/Quick-API.git
synced 2026-07-29 18:05:46 +02:00
feat: initial release of Quick API
Express server that automatically generates REST endpoints from JSON files.
This commit is contained in:
15
package.json
Normal file
15
package.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user