You should be able to identify them when you look at it, you have extra closing paranthesis in line no 8 and 15 });,
also remove declaring the module twice, its not needed.
remove line number 14.
Corrected code,
var express = require('express');
var app = express();
var angular = require("angular");
angular.module('NoteWrangler', ['ngRoute', 'ngResource']);
app.use(express.static('AWS-Portfolio'));
app.listen(5000, function () {
console.log('Listening on port 3000');
});