working s3 integration, commented out load credentials from json

This commit is contained in:
Abhinav Adduri 2017-06-06 10:24:58 -07:00 committed by Danny Coates
parent f377aa4551
commit af4edfef16
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
6 changed files with 116 additions and 86 deletions

View file

@ -10,11 +10,13 @@
"convict": "^3.0.0",
"express": "^4.15.3",
"fs-extra": "^3.0.1",
"node-fetch": "^1.7.1",
"path": "^0.12.7",
"redis": "^2.7.1"
},
"devDependencies": {
"browserify": "^14.4.0",
"cross-env": "^5.0.0",
"prettier": "^1.3.1",
"watchify": "^3.9.0"
},
@ -22,7 +24,8 @@
"repository": "mozilla/something-awesome",
"scripts": {
"format": "prettier --single-quote --write 'frontend/src/*.js' 'server/*.js'",
"start": "watchify frontend/src/main.js -o public/bundle.js -d | node server/portal_server.js",
"dev": "watchify frontend/src/main.js -o public/bundle.js -d | node server/portal_server.js",
"start": "watchify frontend/src/main.js -o public/bundle.js -d | cross-env NODE_ENV=production node server/portal_server.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}