Add reportr-alerts-sms to the package.json and load it in your Reportr configuration:
reportr.configure({
    alerts: [
        require("reportr-alerts-sms")({
            sId: process.env.TWILIO_SID,
            token: process.env.TWILIO_TOKEN,
            from: process.env.TWILIO_FROM
        })
    ]
});