I\'m currently part of team building a Windows 8 application using JavaScript. We are using npm and browserify to manage dependencies and convert our modules to AMD browser
One thing you could possibly do is create an alias for your helpers in your require config...
require.config({ paths: { "helpers": "my/app/lib/helpers" } });
That would cut down on some of your long paths.