As your getting date as String, so you need to convert it into Date then you can update formate as you want.
// YOUR_DATE_STRING = 2014-09-08T08:02:17-05:00
const utcDate = moment.utc(YOUR_DATE_STRING).toDate();
const localDate = moment(utcDate).local().format('YYYY-MM-DD HH:mm:ss');