forked from Lazercat/node-express-file-form-upload-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 765 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
30
31
32
33
34
35
{
"name": "express-app-file-form-upload-demo",
"version": "1.0.0",
"description": "This is a repo as part of a blog post on how to achieve creating a web form that submit's users files to a temporary folder on your Node.js app's server. ",
"main": "App.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": ".git"
},
"keywords": [
"file",
"upload",
"node",
"file",
"form",
"form",
"data",
"upload",
"files",
"to",
"server"
],
"author": "Jesse Lewis",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"jquery": "^3.2.1",
"multer": "^1.3.0",
"nodemon": "^1.12.1"
}
}