CoolFace
Apppublic

DitzDigital/Api

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
package.json56 linesDownload Raw Back to root
1{2  "name": "Restfull-Api",3  "version": "1.0.0",4  "description": "A minimalist REST API boilerplate built with Express.js — fast, lightweight, and extensible.",5  "main": "index.js",6  "type": "module",7  "scripts": {8    "dev": "nodemon index.js",9    "start": "node index.js",10    "lint": "eslint .",11    "test": "jest"12  },13  "keywords": [14    "express",15    "rest-api",16    "api",17    "backend",18    "boilerplate",19    "framework",20    "json",21    "plugin",22    "minimalist"23  ],24  "author": {25    "name": "synshin9",26    "url": "https://github.com/synshin9"27  },28  "license": "MIT",29  "repository": {30    "type": "git",31    "url": "git+https://github.com/synshin9/Restfull-Api.git"32  },33  "bugs": {34    "url": "https://github.com/synshin9/Restfull-Api/issues"35  },36  "homepage": "https://github.com/synshin9/Restfull-Api#readme",37  "dependencies": {38    "@napi-rs/canvas": "^0.1.80",39    "axios": "^1.6.8",40    "crypto": "^1.0.1",41    "cheerio": "^1.1.2",42    "dotenv": "^17.2.2",43    "express": "^4.19.2",44    "multer": "^2.0.2", 45    "@google/genai": "^0.15.0", 46    "fluent-ffmpeg": "^2.1.2",47    "@ffmpeg-installer/ffmpeg": "^1.1.0", 48    "file-type": "^18.7.0",49    "formidable": "^3.5.1"50  },51  "devDependencies": {52    "eslint": "^8.57.0",53    "jest": "^29.7.0",54    "nodemon": "^3.1.0"55  }56}