Can't get plugin content type to show up

Your original file was also incorrect:

//./src/plugins/notifications/server/content-types/index.js

'use strict';

const task = require('./task');

module.exports = {
  task
};

should be

//./src/plugins/notifications/server/content-types/index.js

'use strict';

const task = require('./task');

module.exports = {
  task: { schema: task, lifecycles: ... }
};