forked from IGM-RichMedia-at-RIT/Express-File-Upload-Done
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 782 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "file-upload",
"version": "1.0.0",
"description": "A example of file upload using express and mongodb.",
"main": "/src/app.js",
"scripts": {
"nodemon": "nodemon --watch ./src ./src/app.js",
"start": "node ./src/app.js",
"pretest": "eslint ./src --fix",
"test": "echo \"tests complete\""
},
"author": "Austin Willoughby",
"license": "UNLICENSED",
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"nodemon": "^3.0.1"
},
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"express": "^4.18.2",
"express-fileupload": "^1.4.2",
"express-handlebars": "^7.1.2",
"mongoose": "^8.0.1",
"serve-favicon": "^2.5.0"
}
}