-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 944 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": "s3upload",
"version": "1.0.0",
"description": "Simple NodeJs API to demonstrate how to upload static files to AWS S3",
"main": "App.js",
"scripts": {
"start": "babel-watch src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otoloye/S3Upload.git"
},
"author": "Otoloye T. Oyeniran",
"license": "ISC",
"bugs": {
"url": "https://github.com/otoloye/S3Upload/issues"
},
"homepage": "https://github.com/otoloye/S3Upload#readme",
"dependencies": {
"@babel/runtime": "^7.4.5",
"aws-sdk": "^2.488.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"mongoose": "^5.6.3",
"multer": "^1.4.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-watch": "^7.0.0"
}
}