Add multer and body-parser packages
This commit is contained in:
parent
05b942ebb9
commit
86efffd8a3
1 changed files with 6 additions and 3 deletions
|
@ -1,15 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "file_metadata",
|
"name": "file_metadata",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "API project for freeCodeCamp",
|
"description": "A simple file metadata generator project, based on the freeCodeCamp curriculum",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node index.js"
|
"start": "node index.js",
|
||||||
|
"debug": "node --watch index.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dotenv": "^8.2.0",
|
"dotenv": "^8.2.0",
|
||||||
"express": "^4.16.4",
|
"express": "^4.16.4",
|
||||||
"cors": "^2.8.5"
|
"cors": "^2.8.5",
|
||||||
|
"multer": "^1.4.5-lts.2",
|
||||||
|
"body-parser": "^2.2.0"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue