Skip to content

Instantly share code, notes, and snippets.

@eastridge
Created July 22, 2013 18:45
Show Gist options
  • Save eastridge/6056430 to your computer and use it in GitHub Desktop.
Save eastridge/6056430 to your computer and use it in GitHub Desktop.
{
"application": {
"name": "Application",
"module": "base"
},
"modules": {
"base": {
"scripts": [
{"src": "bower_components/underscore/underscore.js", "global": true},
{"src": "bower_components/jquery/jquery.js", "global": true},
{"src": "bower_components/backbone/backbone.js", "global": true},
{"src": "bower_components/lumbar-loader/lib/script.js", "global": true},
{"src": "bower_components/lumbar-loader/lib/queue.js", "global": true},
{"src": "bower_components/lumbar-loader/local-cache.js", "global": true},
{"src": "bower_components/handlebars/handlebars.js", "global": true},
{"src": "bower_components/bootstrap/js/bootstrap.js", "global": true},
"bower_components/thorax/thorax.js",
"bower_components/lumbar-loader/lumbar-loader.js",
"bower_components/lumbar-loader/lumbar-loader-events.js",
"bower_components/lumbar-loader/lumbar-loader-standard.js",
"bower_components/lumbar-loader/lumbar-loader-backbone.js",
"js/helpers.js",
"js/init.js",
"js/model.js",
"js/collection.js",
"js/view.js",
"js/lib/csrf.js",
"js/lib/backbone.position.js",
"js/lib/jquery.sortable.js",
"js/lib/md5.js",
"js/lib/export-md5.js",
"js/models/",
"js/collections/",
"js/views/alert.js",
"js/views/question-display-list.js",
"js/views/accomplishments.js",
{"module-map": true},
"js/lib/bootstrap.js",
"js/lib/typeahead.js",
"js/lib/moment.js",
"js/lib/jquery.ui.widget.js",
"js/lib/jquery.fileupload.js"
],
"styles": [
"stylesheets/base.css",
"stylesheets/bootstrap.css"
]
},
"dashboard": {
"routes": {
"": "index",
"edit": "editReportTemplate",
"list": "listView",
"list/sort/:sortType": "listViewWithSort",
"list/:id": "listViewWithPerson",
"editPerson/:id": "editPerson",
"uncompleted-responses": "uncompletedResponses",
":person_id": "index"
},
"scripts": [
"js/routers/dashboard.js",
"js/views/dashboard"
],
"styles": [
"stylesheets/dashboard.css"
]
},
"public_response": {
"scripts": [
"js/views/public_response"
],
"styles": [
"stylesheets/public_response.css"
]
}
},
"templates": {
"root": "templates/",
"auto-include": {
"js/views/(.*)\\.(js|coffee)": [
"templates/$1.handlebars",
"templates/$1-item.handlebars",
"templates/$1-empty.handlebars"
]
},
"js/init.js": [
"templates/application.handlebars",
"templates/morale-picker.handlebars",
"templates/dashboard/org-chart-item.handlebars",
"templates/dashboard/org-chart-popover.handlebars",
"templates/dashboard/typeahead-suggest.handlebars"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment