├── package.json ├── README.md ├── LICENSE └── skeletons.json /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "brunch-skeletons", 3 | "version": "0.2.0", 4 | "description": "A registry of Brunch skeletons", 5 | "main": "skeletons.json", 6 | "scripts": { 7 | "test": "node skeletons.json" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/brunch/skeletons.git" 12 | }, 13 | "author": "Brunch team (https://brunch.io)", 14 | "license": "MIT", 15 | "bugs": "https://github.com/brunch/skeletons/issues", 16 | "homepage": "http://brunch.io/skeletons" 17 | } 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Brunch Skeletons [![Build Status](https://travis-ci.org/brunch/skeletons.svg?branch=master)](https://travis-ci.org/brunch/skeletons) 2 | 3 | This is a registry of Brunch skeletons. Human-readable version: http://brunch.io/skeletons 4 | 5 | ## Adding your skeleton 6 | 7 | Simply edit `skeletons.json` file and add a new entry *to the top of the file, but below official Brunch skeletons*: 8 | 9 | ```json 10 | { 11 | "title": "Brunch with Exim", 12 | "url": "hellyeahllc/with-exim", 13 | "alias": "exim", 14 | "technologies": "Babel, ES6, React, Exim", 15 | "description": "Very useful for Cordova apps. A simple skeleton that uses HTML5 boilerplate, React and Exim framework." 16 | } 17 | ``` 18 | 19 | * **Title** — Simple and concise title of your skeleton. 20 | * **URL** — Git URL. For GitHub repos, `github.com/user/repo` can be shortened to `user/repo`. 21 | * **Alias** — a short alias, so users would be able to use `brunch new -s alias` instead of specifying full Git URL. 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Paul Miller (https://paulmillr.com), Elan Shanker, Nik Graf, Thomas Schranz, Allan Berger, Jan Monschke, Martin Schürrer 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /skeletons.json: -------------------------------------------------------------------------------- 1 | { 2 | "skeletons": [ 3 | { 4 | "title": "Dead-simple brunch", 5 | "url": "brunch/dead-simple", 6 | "technologies": "—", 7 | "description": "Dead-simple brunch skeleton. No opinions, just empty dirs and minimal configs.", 8 | "alias": "simple" 9 | }, 10 | { 11 | "title": "Modern JS", 12 | "url": "brunch/with-es6", 13 | "technologies": "Babel, ES6", 14 | "description": "Simple skeleton with Babel support", 15 | "alias": "es6" 16 | }, 17 | { 18 | "title": "React", 19 | "url": "brunch/with-react", 20 | "technologies": "Babel, ES6, React", 21 | "description": "Modern skeleton with React library.", 22 | "alias": "react" 23 | }, 24 | { 25 | "title": "React + Redux", 26 | "url": "brunch/with-redux", 27 | "technologies": "Babel, ES6, React, Redux", 28 | "description": "Redux: Predictable state container for React apps.", 29 | "alias": "redux" 30 | }, 31 | { 32 | "title": "Brunch with Coffee", 33 | "url": "brunch/simple-coffee-skeleton", 34 | "technologies": "CoffeeScript, Stylus, Handlebars", 35 | "description": "HTML5 Boilerplate, jQuery. It was the default skeleton in brunch 1.1. Unsupported but still working." 36 | }, 37 | { 38 | "title": "Brunch with JS", 39 | "url": "brunch/simple-js-skeleton", 40 | "technologies": "JavaScript, Stylus, Handlebars", 41 | "description": "HTML5 Boilerplate, jQuery. Unsupported but still working." 42 | }, 43 | { 44 | "title": "Brunch with Crank", 45 | "url": "darrylcousins/brunch-with-crank", 46 | "technologies": "JavaScript, Crank", 47 | "description": "Write JSX-driven components with functions, promises and generators." 48 | }, 49 | { 50 | "title": "Brunch with Epress and Crank", 51 | "url": "darrylcousins/brunch-with-express", 52 | "technologies": "JavaScript, Express, Crank", 53 | "description": "Use Express to serve JSX-driven components with functions, promises and generators." 54 | }, 55 | { 56 | "title": "Brunch Phaser Desktop", 57 | "url": "delni/brunch-phaser-desktop", 58 | "technologies": "TypeScript, Electron, Phaser", 59 | "description": "Phaser3 boilerplate with Typescript and Electron to make desktop games", 60 | "alias": "brunch-phaser-desktop" 61 | }, 62 | { 63 | "title": "Brunchmantic", 64 | "url": "prudho/brunchmantic", 65 | "technologies": "Fomantic UI, jQuery", 66 | "description": "A simple skeleton for building Fomantic UI powered apps.", 67 | "alias": "brunchmantic" 68 | }, 69 | { 70 | "title": "Brunch with Leaflet", 71 | "url": "ngottlieb/brunch-leaflet-es6-skeleton", 72 | "technologies": "Leaflet, Babel, ES6", 73 | "description": "A skeleton for building LeafletJS map applications with Brunch." 74 | }, 75 | { 76 | "title": "Brunch with Ractive.js", 77 | "url": "usefulparadigm/brunch-ractive", 78 | "technologies": "JavaScript, Ractivejs", 79 | "description": "A Ractive.js skeleton for Brunch." 80 | }, 81 | { 82 | "title": "Elm", 83 | "url": "MattCheely/elm-brunch-skeleton", 84 | "technologies": "Elm", 85 | "description": "A basic Elm project with in-browser error display and no opinions on CSS" 86 | }, 87 | { 88 | "title": "Elm Brunch with Bulma and Sass", 89 | "url": "ondrej-tucek/elm-brunch-bulma-starter", 90 | "alias": "elm-bulma", 91 | "technologies": "Elm, Bulma, Sass, Babel, Auto-Reload", 92 | "description": "A simple Elm skeleton project with Bulma framework and Sass." 93 | }, 94 | { 95 | "title": "Elm Brunch with Foundation and Sass", 96 | "url": "ondrej-tucek/elm-brunch-foundation-starter", 97 | "alias": "elm-foundation", 98 | "technologies": "Elm, Foundation, Sass, Babel, Auto-Reload", 99 | "description": "A simple Elm skeleton project with Foundation 6 framework and Sass." 100 | }, 101 | { 102 | "title": "React-SSR-Site-Template", 103 | "url": "rmsheppard/react-brunch-ssr-template", 104 | "technologies": "React, babel, es6, express, socket.io, SSR (Server Side Rendering), React-Router, SCSS, Jest, Enzyme", 105 | "description": "Very simple site template with React using server side rendering and a very simple server with basic authentication included." 106 | }, 107 | { 108 | "title": "Brunch with Vue and Material Design Components", 109 | "url": "tim15/brunch-vue-mdc", 110 | "technologies": "Vue, Vue-Router, Babel, ES2015, Material Design Components", 111 | "description": "A Material Web Components Vue Skeleton for Brunch", 112 | "alias": "vue-mdc" 113 | }, 114 | { 115 | "title": "Brunch with Vue (barebones)", 116 | "url": "tomquirk/brunch-vue-barebones", 117 | "technologies": "Vue, Vue-Router, Babel, ES2015", 118 | "description": "A Barebones Vue Skeleton for Brunch - Minimal Dependencies!", 119 | "alias": "vue" 120 | }, 121 | { 122 | "title": "Brunch with Sangria", 123 | "url": "m4ttsch/brunch-with-sangria", 124 | "technologies": "Babel/ES6, React, Redux, Bootstrap, jQuery, Sass, Airbnb ESLint", 125 | "description": "React/Redux boilerplate. Write stylesheets with Sass. Make your life easier with Bootstrap & jQuery. Make your code beautiful with Airbnb ESLint.", 126 | "alias": "sangria" 127 | }, 128 | { 129 | "title": "Brunch with Vue and Karma", 130 | "url": "mileandra/brunch-vue-karma", 131 | "technologies": "Babel, ES6, Vue, Vuex, Vue-Router, Karma, Mocha, Chai", 132 | "description": "Vue boilerplate with Vuex and Vue-Router, Unit Tests with karma-brunch, mocha and chai" 133 | }, 134 | { 135 | "title": "Brunch on Speed", 136 | "url": "filter1/brunch-on-speed", 137 | "technologies": "Twitter Bootstrap, jQuery, Sass, Babel, ES6, ESLint, Pleeease (PostCSS), Auto-Reload", 138 | "description": "Skeleton for a modern, long-scroll, single, static Web page.", 139 | "alias": "speed" 140 | }, 141 | { 142 | "title": "Brunch With Pedro (Bootstrap Sass + jQuery + Handlebars + CommonJS wrapping)", 143 | "url": "pnmcosta/brunch-with-pedro", 144 | "alias": "brunch-with-pedro", 145 | "technologies": "Bootstrap Sass, jQuery, Handlebars, CommonJS", 146 | "description": "Brunch With Bootstrap Sass, jQuery, Handlebars and CommonJS wrapping support." 147 | }, 148 | { 149 | "title": "Brunch + ES6 + Twitter Bootstrap + jQuery", 150 | "url": "ziogas/brunch-with-es6-jquery-twitter-bootstrap-autoreload", 151 | "alias": "es6-bootstrap", 152 | "technologies": "Babel, ES6, Twitter Bootstrap, jQuery", 153 | "description": "Twitter Bootstrap 3 Boilerplate with ES6 support." 154 | }, 155 | { 156 | "title": "Brunch with Phaser", 157 | "url": "samme/brunch-phaser", 158 | "alias": "phaser", 159 | "technologies": "Babel, CoffeeScript, ES6, glue, Typescript", 160 | "description": "Make games with Phaser." 161 | }, 162 | { 163 | "title": "Brunch with MEANtballs", 164 | "url": "Tim15/brunch-meantballs", 165 | "technologies": "MongoDB, Express, AngularJS, Babel", 166 | "description": "a modern MEAN stack skeleton for Brunch", 167 | "alias": "meantballs" 168 | }, 169 | { 170 | "title": "React with Jest", 171 | "url": "Ritabrata-TW/with-react-jest", 172 | "technologies": "Babel, ES6, React, React, Jest, Enzyme", 173 | "description": "Modern skeleton with React library and testing support using Jest and Enzyme.", 174 | "alias": "react-jest" 175 | }, 176 | { 177 | "title": "Brunch Plain Simple", 178 | "url": "tkesgar/brunch-plain-simple", 179 | "alias": "plain-simple", 180 | "technologies": "Babel, ES6, React, Redux, Express, PostCSS", 181 | "description": "A customizable server-client single-page app skeleton using ES6+Redux+React and Express." 182 | }, 183 | { 184 | "title": "Brunch with Rails", 185 | "url": "dimroc/brunch-with-rails", 186 | "technologies": "SASS, jQuery, Bootstrap, Auto-Reload", 187 | "description": "Minimal brunch skeleton, designed to be used inside a Rails application for a client side asset pipeline that works with Sprockets.", 188 | "alias": "rails" 189 | }, 190 | { 191 | "title": "Brunch with Cocktails", 192 | "url": "kgcreative/brunch-with-cocktails", 193 | "technologies": "Handlebars(precompiled templates), SASS, Bourbon, Neat, Bitters, Normalize, Autoprefixer, jQuery", 194 | "description": "Static HTML Boilerplate skeleton, served with handlebars (via html-brunch-static), sass-brunch, bourbon, neat, bitters, normalize and jQuery.", 195 | "alias": "cocktails" 196 | }, 197 | { 198 | "title": "Brunch with Elm", 199 | "url": "alaister/brunch-with-elm", 200 | "technologies": "Elm, Sass", 201 | "description": "Brunch with Elm & Sass", 202 | "alias": "elm" 203 | }, 204 | { 205 | "title": "Brunch with Elm and Electron", 206 | "url": "neurodynamic/brunch-with-elm-and-electron", 207 | "technologies": "Elm, Sass, Electron", 208 | "description": "Brunch with Elm, Sass, and Electron", 209 | "alias": "elm-electron" 210 | }, 211 | { 212 | "title": "Brunch with TypeScript", 213 | "url": "ysle/brunch-with-typescript", 214 | "technologies": "TypeScript", 215 | "description": "a starter skeleton for TypeScript", 216 | "alias": "ts" 217 | }, 218 | { 219 | "title": "Exim", 220 | "url": "hellyeahllc/brunch-with-exim", 221 | "technologies": "Babel, ES6, React, Exim", 222 | "description": "An ultra-lightweight Flux-like architecture for HTML5 apps using Facebook's React library.", 223 | "alias": "exim" 224 | }, 225 | { 226 | "title": "Brunch with MarionetteJS", 227 | "url": "denar90/brunch-with-marionettejs", 228 | "technologies": "BackboneJS, MarionetteJS, Babel, ES6", 229 | "description": "Modern skeleton with MarionetteJS library.", 230 | "alias": "marionettejs" 231 | }, 232 | { 233 | "title": "Brunch with ThreeJS", 234 | "url": "jeremboo/brunch-threejs-es2015", 235 | "alias": "threeJS", 236 | "technologies": "ThreeJS, WebGL, Babel, ES2015", 237 | "description": "To starting a project in WebGL with Three.js and es2015" 238 | }, 239 | { 240 | "title": "Weekend Brunch", 241 | "url": "jamesabels/Weekend-Brunch", 242 | "technologies": "Electron, Babel, ES6, Sass, Susy, Modular-Scale", 243 | "description": "Weekend Brunch is a Brunch Skeleton powered by Electron, Sass and Babel.", 244 | "alias": "electron" 245 | }, 246 | { 247 | "title": "Node-Webkit Hipster Seed", 248 | "url": "Anonyfox/node-webkit-hipster-seed", 249 | "technologies": "Node-Webkit, Grunt building, brunch-angular-seed (Jade, Less, Coffeescript, Angular, Bootstrap)", 250 | "description": "Ready to Use Skeleton to build Desktop Applications with all the Web goodies of today.", 251 | "alias": "hipster" 252 | }, 253 | { 254 | "title": "Brunch with Chaplin", 255 | "url": "paulmillr/brunch-with-chaplin", 256 | "technologies": "CoffeeScript, Stylus, Handlebars", 257 | "description": "Chaplin, Backbone, HTML5 Boilerplate, jQuery. Perfect for big applications", 258 | "alias": "chaplin" 259 | }, 260 | { 261 | "title": "Brunch with AngularJS", 262 | "url": "scotch/angular-brunch-seed", 263 | "technologies": "Coffeescript, Less, Jade", 264 | "description": "Twitter Bootstrap with themes, Testacular for unit tests" 265 | }, 266 | { 267 | "title": "Brunch with Ember", 268 | "url": "icholy/ember-brunch", 269 | "technologies": "JavaScript, CSS, Handlebars", 270 | "description": "Twitter Bootstrap, jQuery", 271 | "alias": "ember" 272 | }, 273 | { 274 | "title": "Brunch with Hipsters", 275 | "url": "elving/brunch-with-hipsters", 276 | "technologies": "CoffeeScript, Stylus, Handlebars", 277 | "description": "Swag, Lodash, Font Awesome, Normalize.css, HTML5 Boilerplate CSS Helpers, Brunch Auto-Reload, coffeelint-brunch and imageoptmizer-brunch. Works with Bower, includes generators and testing with Karma-Runner." 278 | }, 279 | { 280 | "title": "Brunch with eggs and bacon", 281 | "url": "nezoomie/brunch-eggs-and-bacon", 282 | "technologies": "JavaScript, Sass, LESS, Handlebars", 283 | "description": "Twitter Bootstrap, Mediator" 284 | }, 285 | { 286 | "title": "Brunch with Ember Reloaded", 287 | "url": "gcollazo/brunch-with-ember-reloaded", 288 | "technologies": "CoffeeScript, Stylus, Handlebars", 289 | "description": "HTML5 Boilerplate, jQuery and Auto Reload" 290 | }, 291 | { 292 | "title": "Tapas with Ember", 293 | "url": "mutewinter/tapas-with-ember", 294 | "technologies": "CoffeeScript, Stylus, Handlebars, Ember Data, Ember Model", 295 | "description": "A skeleton for rapid Ember development. Including automated Ember installation scripts, environment-specific JS builds, generators, and Ember.vim support." 296 | }, 297 | { 298 | "title": "Brunch with Banana Pancakes", 299 | "url": "Anaphase/brunch-banana-pancakes", 300 | "technologies": "JavaScript, Sass, LESS, Handlebars", 301 | "description": "Twitter Bootstrap, Mediator. Essentially the same as Brunch with Eggs and Bacon, but constantly updated to the latest library versions.", 302 | "alias": "banana-pancakes" 303 | }, 304 | { 305 | "title": "Brunch On Asteroids", 306 | "url": "exlee/brunch-on-asteroids", 307 | "technologies": "Jade, Sass, CoffeeScript/LiveScript", 308 | "description": "Brunch with Twitter Bootstrap 2.3 extended by Bootswatch themes, Angular.JS, optional LiveScript or CoffeeScript and some extra libraries preconfigured and included such as D3.js, AngularUI, jQuery UI." 309 | }, 310 | { 311 | "title": "Express Brunch with Jade", 312 | "url": "jerfowler/ExpressBrunchJade", 313 | "technologies": "CoffeeScript, Stylus, Jade", 314 | "description": "Custom server.coffee that watches your Express server files and restarts on hot code changes. Uses Jade for client and server side templates. Includes express framework generators and Mocha/Chai/Sinon for testacular testing. Everything hipsters has, and more..." 315 | }, 316 | { 317 | "title": "Brunch with AngularJS in LiveScript", 318 | "url": "clkao/angular-brunch-seed-livescript", 319 | "technologies": "LiveScript, Sass, Jade", 320 | "description": "Twitter Bootstrap in Sass, LiveScript" 321 | }, 322 | { 323 | "title": "Brunch with MarionetteJS", 324 | "url": "SimbCo/brunch-with-marionette", 325 | "technologies": "CoffeeScript, Stylus, Handlebars", 326 | "description": "Based on the template we have been using for our MarionetteJS projects. Includes Twitter Bootstrap." 327 | }, 328 | { 329 | "title": "JavaScript App Skeleton", 330 | "url": "damassi/Javascript-App-Skeleton", 331 | "technologies": "JavaScript, SASS, Handlebars", 332 | "description": "LiveReload, Backbone.Mediator, Mocha, Advanced Structure" 333 | }, 334 | { 335 | "title": "Brunch Facing True North", 336 | "url": "scoarescoare/angular-brunch-true-north", 337 | "technologies": "Coffeescript, Compass, Sass, Jade, Initializr", 338 | "description": "Built on the amazing Brunch with Angular skeleton with a few tweaks including: Compass, Bootstrap SASS, HTML5BP" 339 | }, 340 | { 341 | "title": "Brunch with brunch", 342 | "url": "monokrome/brunch-with-brunch", 343 | "technologies": "—", 344 | "description": "As minimal as possible for building your own toolchain on top of." 345 | }, 346 | { 347 | "title":"Z9 Kickstart", 348 | "url":"plugnburn/z9-kickstart", 349 | "technologies":"999.css, Zen.js, Q.js, R.js, XT.js", 350 | "description":"Brunch-based boilerplate to create ultra-small-sized HTML5 apps with ZenQRXT stack and 999.css" 351 | }, 352 | { 353 | "title": "Brunch with Hampsters", 354 | "url": "wordofchristian/brunch-with-hampsters", 355 | "technologies": "CoffeeScript, Stylus, Emblem.js", 356 | "description": "Also useful for rapid prototyping. Includes html5 boilerplate, Modernizer, and Twitter Bootstrap." 357 | }, 358 | { 359 | "title": "@jokull's skeleton", 360 | "url": "jokull/brunch-template", 361 | "technologies": "CoffeeScript, Stylus, Handlebars", 362 | "description": "Zepto, Stylus responsive grid, Modernizr, Facebook login, slideshow" 363 | }, 364 | { 365 | "title": "Brunch with SocketSoup", 366 | "url": "pheuter/brunch-socket-soup", 367 | "technologies": "Coffeescript, Stylus, Handlebars", 368 | "description": "HTML5 Boilerplate, Twitter Bootstrap, Express, Socket.io" 369 | }, 370 | { 371 | "title": "Spine on Brunch", 372 | "url": "damiencaselli/spine-on-brunch", 373 | "technologies": "CoffeeScript, CSS, Handlebars", 374 | "description": "HTML5 Boilerplate, jQuery" 375 | }, 376 | { 377 | "title": "BTC-Chaplin", 378 | "url": "jupl/btc-chaplin", 379 | "technologies": "CoffeeScript, LESS, eco", 380 | "description": "jQuery, Clearless, Twitter Bootstrap, Font Awesome, Backbone.stickit, Underscore.string. Cake tasks included. There's also a variant with Cordova." 381 | }, 382 | { 383 | "title": "BTC-Ember", 384 | "url": "jupl/btc-ember", 385 | "technologies": "CoffeeScript, Handlebars, LESS", 386 | "description": "Clearless, Twitter Bootstrap, Font Awesome. Require statements are not need for Ember modules. Cake tasks included. There's also a variant with Cordova." 387 | }, 388 | { 389 | "title": "BTC-Cordova", 390 | "url": "jupl/btc-cordova", 391 | "technologies": "—", 392 | "description": "Bare skeleton that includes support for building apps using Apache Cordova.", 393 | "alias": "cordova" 394 | }, 395 | { 396 | "title": "Brunch with Panache", 397 | "url": "https://git.habd.as/jhabdas/brunch-with-panache", 398 | "technologies": "CoffeeScript, Sass, Handlebars", 399 | "description": "BTC-Chaplin fork with Swag, Hapi, Browser Sync and Cordova. Provides file fingerprinting and accepts environment variables. Testing with Karma, PhantomJS, Mocha, Sinon and Chai. Jake for Rails-like CLI." 400 | }, 401 | { 402 | "title": "Brunch with Bootstrap, Sass, and Coffee", 403 | "url": "eriwen/brunch-jade-bootstrap-and-coffee", 404 | "technologies": "CoffeeScript, Sass, Jade", 405 | "description": "Twitter Bootstrap, Bootstrap-Sass, Mediator, jQuery" 406 | }, 407 | { 408 | "title": "Brunch with bare livescript", 409 | "url": "gkz/brunch-bare-livescript", 410 | "technologies": "LiveScript, Less", 411 | "description": "Extremely simple skeleton without any frameworks" 412 | }, 413 | { 414 | "title": "Sassy Brunch", 415 | "url": "bc-luke/sassy-brunch", 416 | "technologies": "CoffeeScript, Sass, Handlebars", 417 | "description": "Just like Brunch with Chaplin, but replaces Stylus with Sass" 418 | }, 419 | { 420 | "title": "CoffeeScript App Skeleton", 421 | "url": "damassi/Coffeescript-App-Skeleton", 422 | "technologies": "CoffeeScript, Stylus, Handlebars", 423 | "description": "HTML5 Boilerplate, jQuery, Mediator, advanced structure" 424 | }, 425 | { 426 | "title": "Cinder Plate", 427 | "url": "edgycircle/cinder-plate", 428 | "technologies": "CoffeeScript, SASS, Handlebars", 429 | "description": "CoffeeScript, SASS, Handlebars template pre-compilation, production and development builds with appropriate Ember.js version (debug or production)." 430 | }, 431 | { 432 | "title": "Brunch With Ketchup", 433 | "url": "Nami-Doc/brunch-with-ketchup", 434 | "technologies": "LiveScript, Stylus, Jade", 435 | "description": "Meant for large applications. Includes express-resource." 436 | }, 437 | { 438 | "title": "Brunch with Bacon Pancakes", 439 | "url": "eliellis/brunch-bacon-pancakes", 440 | "technologies": "JavaScript, Sass, LESS, Handlebars", 441 | "description": "Created with Brunch with Banana Pancakes as a base, Brunch with Bacon Pancakes includes Twitter Bootstrap with FontAwesome as style boilerplate." 442 | }, 443 | { 444 | "title": "Brunch with Chaplin and Bootstrap", 445 | "url": "vip32/brunch-with-chaplin-and-bootstrap", 446 | "technologies": "CoffeeScript, Stylus, Handlebars", 447 | "description": "HTML5 Boilerplate, Bootstrap, jQuery" 448 | }, 449 | { 450 | "title": "Sassy Brunch with Ember and CoffeeSoup", 451 | "url": "tricinel/brunch-ember-sassy", 452 | "technologies": "CoffeeScript, Sass, Handlebars", 453 | "description": "HTML5 Boilerplate, Twitter Bootstrap (Compass), jQuery" 454 | }, 455 | { 456 | "title": "Brunch Dutch Baby", 457 | "url": "EnosFeedler/brunch-dutch-baby", 458 | "technologies": "Coffeescript, Stylus, Jade", 459 | "description": "Backbone.js, Bootstrap 3, Karma Test Runner" 460 | }, 461 | { 462 | "title": "Angular & Brunch - No fuss", 463 | "url": "ocombe/angular-brunch-seed-no-fuss", 464 | "technologies": "Angular, SASS-Bootstrap 3 & Bourbon", 465 | "description": "Brunch with an Angular seed featuring SASS-Bootstrap 3. No ruby (using Node-SASS & Bourbon), no Jade, no Coffeescript. Unit tests with karma & e2e tests with protractor." 466 | }, 467 | { 468 | "title": "Brunch with Moby", 469 | "url": "connorblack/brunch-with-moby", 470 | "technologies": "PhoneGap (Cordova), Lungo.js", 471 | "description": "Simple skeleton optimized for PhoneGap and integrated with Lungo.js for sexy prototyping. Easily create native-like mobile apps!" 472 | }, 473 | { 474 | "title": "Brunch Crumbs", 475 | "url": "meleyal/brunch-crumbs", 476 | "technologies": "CoffeeScript, jQuery, Sass, Eco", 477 | "description": "Minimal structure based on H5BP, testing via Karma/Jasmine, Docs via Docco, deployment via Heroku." 478 | }, 479 | { 480 | "title": "Brunch chrunb", 481 | "url": "tUrG0n/brunch-chrunb", 482 | "technologies": "CoffeeScript, Stylus, Jade", 483 | "description": "Twitter Bootstrap, jQuery" 484 | }, 485 | { 486 | "title": "Brunch with Chaplin and Initializr", 487 | "url": "DallanQ/brunch-with-chaplin-and-initializr", 488 | "technologies": "CoffeeScript, Stylus, LESS, Handlebars", 489 | "description": "HTML5 Boilerplate, Bootstrap, jQuery, Modernizr — includes individual bootstrap style files and javascript plugins so you can omit or modify them" 490 | }, 491 | { 492 | "title": "Coffee purist brunch", 493 | "url": "cbosco/coffee-purist-brunch", 494 | "technologies": "CoffeeScript, LESS, eco templates", 495 | "description": "jQuery, Mocha. Tests run with no need to build into public/ directory or duplicate test/vendor libraries. For those who want to bundle libs specifically made for CoffeeScript." 496 | }, 497 | { 498 | "title": "Cinnamon Toast Brunch", 499 | "url": "Anaphase/cinnamon-toast-brunch", 500 | "technologies": "CoffeeScript, Stylus, & SIML", 501 | "description": "Never write a semicolon again! Cinnamon Toast Brunch focuses on concise and clean code." 502 | }, 503 | { 504 | "title": "Ultimate Omelette Brunch", 505 | "url": "aheuermann/Ultimate-Omelette-Brunch", 506 | "technologies": "CoffeeScript, Less, Jade", 507 | "description": "CoffeeScript, Less, Jade, Bootstrap (Flatly Theme), Angular UI-Bootstrap" 508 | }, 509 | { 510 | "title": "Brunch with chicken and waffles", 511 | "url": "thomdixon/brunch-chicken-and-waffles", 512 | "technologies": "CoffeeScript", 513 | "description": "Angular, AngularUI, and Bootstrap 3" 514 | }, 515 | { 516 | "title": "Brunch with Edge Benedict", 517 | "url": "codevinsky/brunch-with-edge-benedict", 518 | "technologies": "Coffeescript, Less, Jade", 519 | "description": "Always kept up-to-date with the newest libraries: AngularJS 1.2.0-rc.3, Bootstrap 3, jQuery 2.0.3, Sling UI 0.2.3" 520 | }, 521 | { 522 | "title": "Sticky Brunch", 523 | "url": "Nami-Doc/sticky-brunch", 524 | "technologies": "LiveScript, Stylus, Jade", 525 | "description": "Includes Stickit for MVVM-like behavior. No CSS framework included." 526 | }, 527 | { 528 | "title": "Brunch With Sass and Jade", 529 | "url": "felipesabino/brunch-with-sass-and-jade", 530 | "technologies": "CoffeeScript, Sass, Jade", 531 | "description": "Brunch with Chaplin, Sass, Jade, jQuery and Underscore" 532 | }, 533 | { 534 | "title": "Brunch with Puppets", 535 | "url": "sandy98/brunch-with-puppets", 536 | "technologies": "CoffeeScript, Stylus", 537 | "description": "MarionetteJS - Twitter Bootstrap based skeleton with expanded, login prepared menu and some other goodies" 538 | }, 539 | { 540 | "title": "Simple Brunch", 541 | "url": "KyleAMathews/simple-brunch", 542 | "technologies": "CoffeeScript, Sass / Compass, Eco", 543 | "description": "Includes some nice typography defaults and Susy, a responsive grid system." 544 | }, 545 | { 546 | "title": "Brunch Marcos", 547 | "url": "smazurov/brunch-marcos", 548 | "technologies": "JavaScript, Style / Handlebars", 549 | "description": "LayoutManager, Tests, Sensible structure to write large maintainable apps." 550 | }, 551 | { 552 | "title": "Brunch Time", 553 | "url": "sjlu/brunch-time", 554 | "technologies": "Javascript, LESS, Handlebars", 555 | "description": "Bower, Backbone.js, Normalize.css, lesshat" 556 | }, 557 | { 558 | "title": "Brunch with Angular-Express", 559 | "url": "clonn/angular-express", 560 | "technologies": "Coffeescript, Stylus, Angular, Express", 561 | "description": "HTML5 Boilerplate, Angular.js, Express" 562 | }, 563 | { 564 | "title": "Brunch with MarionetteJS", 565 | "url": "vip32/brunch-with-marionette", 566 | "technologies": "CoffeeScript, Stylus, Handlebars, Bootstrap 3", 567 | "description": "Copy of SimbCo/brunch-with-marionette which has specific implementation of routes/views" 568 | }, 569 | { 570 | "title": "Brunch Foundation", 571 | "url": "talentriot/brunch-foundation", 572 | "technologies": "JavaScript, Sass/Handlebars", 573 | "description": "Foundation CSS framework, LayoutManager, Tests, Sensible structure to write large maintainable apps. Intended for mobile-first" 574 | }, 575 | { 576 | "title": "Brunch with Ember Sideloaded", 577 | "url": "ksnyde/brunch-with-ember-sideloaded", 578 | "technologies": "Javascript, LESS, Handlebars", 579 | "description": "Bootstrap 3, MomentJS, HTML5 Boilerplate, jQuery and Auto Reload" 580 | }, 581 | { 582 | "title": "Brunch with SASS", 583 | "url": "stefanvermaas/brunch-with-sass", 584 | "technologies": "CoffeeScript, Sass, Handlebars", 585 | "description": "Brunch with SASS provides a working Brunch with Chaplin skeleton with SASS enabled instead of Stylus" 586 | }, 587 | { 588 | "title": "Brunch with Grits", 589 | "url": "monokrome/brunch-with-grits", 590 | "technologies": "Backbone, Marionette, CoffeeScript, Stylus", 591 | "description": "Brunch with CoffeeScript, Stylus, Backbone, Marrionette, and jQuery." 592 | }, 593 | { 594 | "title": "Brunch with Coffee & Dust", 595 | "url": "pkmishra/Dhancha", 596 | "technologies": "CoffeeScript, LESS, Dust.js", 597 | "description": "Twitter Bootstrap and Aura based skeleton." 598 | }, 599 | { 600 | "title": "Pineapple in a Can", 601 | "url": "timebox-designs/pineapple-in-a-can", 602 | "technologies": "JavaScript, Stylus", 603 | "description": "Backbone, bootstrap, font awesome, handlebars, jQuery, marionette, swag and underscore. Chock full of yummy goodness!" 604 | }, 605 | { 606 | "title": "Canned Coral", 607 | "url": "timebox-designs/canned-coral", 608 | "technologies": "JavaScript, Stylus", 609 | "description": "A copy of Pineapple in a Can with a reverse proxy." 610 | }, 611 | { 612 | "title": "Brunch with Underscore, LESS and JS", 613 | "url": "davidfregoli/brunch-with-underscore-js-less", 614 | "technologies": "Underscore templates, LESS styles, plain JS", 615 | "description": "Minimal Brunch Skeleton with Underscore templates, LESS styles and vanilla JS" 616 | }, 617 | { 618 | "title": "Brunch with Fruits", 619 | "url": "askalyuk/brunch-fruits", 620 | "technologies": "JavaScript, Handlebars, LESS/SASS", 621 | "description": "Bootstrap, Mocha/Chai. It has example of deployed full-stack application." 622 | }, 623 | { 624 | "title": "Brunch with barebone AMD backbone, twtr bs, JST, _ and FA", 625 | "url": "morriswchris/brunch-with-backbacon", 626 | "technologies": "Underscore templates (JST), LESS styles, Bootstrap, Font Awesome, plain JS", 627 | "description": "Minimal Brunch Skeleton with Underscore templates precompiled to JST, LESS styles including bootstrap and font awesome and vanilla JS" 628 | }, 629 | { 630 | "title": "Brunch with Ember and Bootstrap", 631 | "url": "huafu/brunch-with-ember-and-bootstrap", 632 | "technologies": "CoffeeScript, Ember, Ember data, Stylus and Handlebars", 633 | "description": "HTML5 Boilerplate, Twitter Bootstrap (Stylus version), jQuery, Keyword, Ember Bootstrap and Auto Reload" 634 | }, 635 | { 636 | "title": "Brunch on fire", 637 | "url": "abronte/brunch-on-fire", 638 | "technologies": "CoffeeScript, SASS, Handlebars", 639 | "description": "Straightforward ember bundle. Includes jQuery and tests are setup using mocha + chai." 640 | }, 641 | { 642 | "title": "Spine.js with Bootstrap OR jQuery Mobile", 643 | "url": "markmarijnissen/spine-livescript-brunch-skeleton", 644 | "technologies": "LiveScript, Less, Jade", 645 | "description": "jQuery
optionally add Twitter Bootstrap (LESS code!) or jQuery Mobile using generators. Also includes an Android Eclipse project using PhoneGap!" 646 | }, 647 | { 648 | "title": "Vegan Brunch", 649 | "url": "MaggieCabrera/vegan-brunch", 650 | "technologies": "Javascript, Sass, Compass", 651 | "description": "Simple brunch skeleton to support foundation 4 and compass" 652 | }, 653 | { 654 | "title": "Simple Brunch with AngularJS", 655 | "url": "ashleydavis/AngularJS-Skeleton", 656 | "technologies": "", 657 | "description": "AngularJS v1.1.4 and jQuery v2.0.2" 658 | }, 659 | { 660 | "title": "Brunch for libs", 661 | "url": "monokrome/brunch-for-libs", 662 | "technologies": "", 663 | "description": "A super minimal brunch configuration for building Javascript libraries on top of." 664 | }, 665 | { 666 | "title": "Brunch with Wisp", 667 | "url": "sandy98/brunch-with-wisp", 668 | "technologies": "Wisp", 669 | "description": "Tiny skeleton meant to be a proof of concept for the use of Wisp, the Clojure-like Lisp dialect with Brunch." 670 | }, 671 | { 672 | "title": "Brunch with CoffeeScript, Jade, Less, Bower", 673 | "url": "GulinSS/brunch-bower-site", 674 | "technologies": "CoffeeScript, Jade, Less, Bower", 675 | "description": "Minimal skeleton for modern Client-Side development based on stack." 676 | }, 677 | { 678 | "title": "Brunch with Jade and Stylus", 679 | "url": "TessaHarmon/brunch-jade-stylus", 680 | "technologies": "Jade, Stylus", 681 | "description": "Minimal skeleton based on brunch-with-brunch for jade/stylus lovers." 682 | }, 683 | { 684 | "title": "Brunch with React and Less", 685 | "url": "warrenseine/brunch-react-less", 686 | "technologies": "Javascript, React, Less, Bower, Vagrant", 687 | "description": "Skeleton for cross-platform rapid development with React and Less. Just run vagrant up and edit the code." 688 | }, 689 | { 690 | "title": "Brunch with LiveScript, Stylus, React", 691 | "url": "DimensionSoftware/brunch-with-pb", 692 | "technologies": "LiveScript, React, Stylus, Express", 693 | "description": "This is a skeleton for a React-based single-page application that can also do server-side rendering." 694 | }, 695 | { 696 | "title": "Brunch with Emmett", 697 | "url": "https://git.habd.as/jhabdas/brunch-with-emmett", 698 | "technologies": "CoffeeScript, Exim (React + Flux), React Router, no-JSX", 699 | "description": "Builds on top of Exim. Puts on Topcoat for CSS. Sings with Bluebird." 700 | }, 701 | { 702 | "title": "Brunch With Hyyan", 703 | "url": "hyyan/brunch-with-hyyan", 704 | "technologies": "Bower, Bootstrap Sass, Bootstrap RTL And jQuery", 705 | "description": "This is a skeleton for building new sass projects with Bootstrap Sass and jQuery, it can be used with wordpress themes easily" 706 | }, 707 | { 708 | "title": "Brunch with Whey Protein", 709 | "url": "dobromir-hristov/brunch-with-whey-protein", 710 | "technologies": "SASS, Foundation", 711 | "description": "This skeleton is based on the Foundation framework. It a basic website kick starter. Includes Foundation, SASS, jQuery, Bourbon." 712 | }, 713 | { 714 | "title": "Brunch with Dragons", 715 | "url": "smokku/brunch-with-dragons", 716 | "technologies": "LESS, Jade, Bootstrap, FontAwesome, AngularJS, AngularUI, Bower, Brunch, Karma, Mocha, Chai, Sinon, Protractor, LiveScript", 717 | "description": "Frontend (API based) application with streamlined workflow explained by many examples." 718 | }, 719 | { 720 | "title": "Brunch with Jarvis", 721 | "url": "morriswchris/brunch-with-jarvis", 722 | "technologies": "Literally Nothing! .. oh wait I left a sample css and index file", 723 | "description": "Copies everything form app/assets to build. Makes for an awesome static site server" 724 | }, 725 | { 726 | "title": "Brunch with a Sassy Zigzag", 727 | "url": "borisschapira/brunch-with-a-sassy-zigzag", 728 | "technologies": "AngularJS (route, directive, filter, template compilation), JSHint, Sass, Karma + Jasmine", 729 | "description": "An angular setup with Sass" 730 | }, 731 | { 732 | "title": "Brunch gentleman set", 733 | "url": "lnikell/brunch-gentleman-set", 734 | "technologies": "Stylus, Coffeescript, Backbone, Jade, jQuery, Underscore", 735 | "description": "Backbone.LayoutManager, Autoprefixer, HTML5 template. All what you need to fast start." 736 | }, 737 | { 738 | "title": "Brunch With Ionic", 739 | "url": "hyyan/brunch-with-ionic", 740 | "technologies": "Bower, Ionic Sass, AngularJS, Cordova", 741 | "description": "HTML5 mobile application skeleton with Brunch, Ionic Framework And AngularJS" 742 | }, 743 | { 744 | "title": "Brunch With OnsenUI", 745 | "url": "hyyan/brunch-with-onsenui", 746 | "technologies": "Bower, OnsenUI, Stylus, AngularJS, Cordova", 747 | "description": "HTML5 mobile application skeleton with Brunch, Onsenui Framework And AngularJS" 748 | }, 749 | { 750 | "title": "Brunch Materialistic and Arrogantular", 751 | "url": "row1/brunch-materialistic-arrogantular", 752 | "technologies": "AngularJS, Angular Material, SASS, UI-Router", 753 | "description": "AngularJS skeleton using Google Material Design and following John Papa's AngularJS style guide." 754 | }, 755 | { 756 | "title": "Brunch with Sass Typogrid", 757 | "url": "dommmel/brunch-with-sass-typogrid", 758 | "technologies": "SASS", 759 | "description": "HTML Skeleton with sassy typography and responsive grid using susy, modular-scale, breakpoint." 760 | }, 761 | { 762 | "title": "Brunch with Angular 2", 763 | "url": "colinbate/ng2-brunch", 764 | "alias": "ng2", 765 | "technologies": "Angular 2, TypeScript", 766 | "description": "Starter project for using Angular 2 with TypeScript." 767 | }, 768 | { 769 | "title": "Bespoke Brunch", 770 | "url": "makenew/deck-bespoke.js", 771 | "technologies": "Bespoke.js, JavaScript (Babel, Standard, UglifyJS), Sass (Sass Lint), Smarter boilerplate", 772 | "description": "Make your next talk in Bespoke.js. Instant-feedback dev pipeline. GitHub pages deploy." 773 | }, 774 | { 775 | "title": "Tasty Brunch", 776 | "url": "makenew/tasty-brunch", 777 | "technologies": "JavaScript (Babel, Standard, UglifyJS), Sass (Sass Lint), Dev extras", 778 | "description": "Minimal and unopinionated. Tasty dev pipeline. Extra-tasty boilerplate." 779 | }, 780 | { 781 | "title": "Brunch with Vue", 782 | "url": "nblackburn/brunch-with-vue", 783 | "technologies": "Vue, Vuex, Vue Router, Vue Resource, Babel", 784 | "description": "A skeleton application utilizing vue, vuex, vue-resource and vue-router." 785 | }, 786 | { 787 | "title": "Ionic Brunch ES6 Seed", 788 | "url": "tolyo/ionic-brunch-es6-seed", 789 | "alias": "ionic-es6", 790 | "technologies": "Babel, ES6, Sass, Ionic, AngularJS, Cordova", 791 | "description": "ES6 starter project for Ionic framework mobile application." 792 | }, 793 | { 794 | "title": "Ghost theme with brunch", 795 | "url": "diegys/Ghost-Themes-with-Brunch", 796 | "alias": "ghost-theme-with-brunch", 797 | "technologies": "Babel, ES6, PostCss", 798 | "description": "ES6 starter project for Ghost theme development with Casper included as reference." 799 | }, 800 | { 801 | "title": "Elm Brunch with Sass, Bootstrap 4", 802 | "url": "mathieul/brunch-with-elm-bootstrap", 803 | "alias": "elm-sass-bootstrap", 804 | "technologies": "Elm, Babel, ES6, Sass, Bootstrap", 805 | "description": "Elm starter project with ES6, Sass and Bootstrap." 806 | }, 807 | { 808 | "title": "Lazy static site generator.", 809 | "url": "DoumanAsh/lazy-static-site-gen", 810 | "alias": "lazy-static-site-gen", 811 | "technologies": "Jade, Stylus, JSHint", 812 | "description": "Simple static site generator. Powered by power of Jade and Stylus. Everything you need for quick and lazy work." 813 | }, 814 | { 815 | "title": "Brunch with React MobX", 816 | "url": "hasanozgan/brunch-with-react-mobx-bootstrap-jquery", 817 | "alias": "mobx-react-with-brunch", 818 | "technologies": "React, MobX, React Router, Bootstrap, jQuery, ES6", 819 | "description": "Starter project for using React MobX with ES6." 820 | }, 821 | { 822 | "title": "Brunch with Inferno", 823 | "url": "infernojs/brunch-with-inferno", 824 | "alias": "inferno", 825 | "technologies": "Inferno, ES6, Babel", 826 | "description": "Modern skeleton with Inferno." 827 | }, 828 | { 829 | "title": "Brunch with Mithril, MDL", 830 | "url": "ilsenem/brunch-with-mithril-material", 831 | "alias": "mithril-mdl", 832 | "technologies": "Mithril, JSX, MDL, ES6, Babel, ESLint", 833 | "description": "SPA skeleton with Mithril and Material Design Lite. Linting with ESLint and JSX transpilation included." 834 | }, 835 | { 836 | "title": "Brunch with ASP.NET Core MVC plus Knockout and TypeScript", 837 | "url": "achimschrepfer/brunch-typescript-knockout", 838 | "alias": "aspnet-knockout", 839 | "technologies": "ASP.NET, Knockout, jQuery, TypeScript", 840 | "description": "Simple skeleton based on ASP.NET Core, Knockout.js, jQuery and TypeScript. Works perfectly when used with Visual Studio Code." 841 | }, 842 | { 843 | "title": "Brunch with Vuety", 844 | "url": "srodriki/brunch-with-vuety", 845 | "alias": "brunch-with-vuety", 846 | "technologies": "Vue, Vuex, VueRouter, ES6, Babel, Axios, Store", 847 | "description": "Opinionated SPA skeleton based on Vue, with some boilerplate for setting up your app with Vuex and VueRouter, as well as some neat way to manage user's session." 848 | }, 849 | { 850 | "title": "Preact", 851 | "url": "sascha53/brunch-with-preact", 852 | "technologies": "Babel, ES6, Preact", 853 | "description": "Modern skeleton with Preact library.", 854 | "alias": "preact" 855 | }, 856 | { 857 | "title": "Skunch", 858 | "url": "madmat92/skunch", 859 | "technologies": "JQuery 3, Bootstrap 3, SCSS", 860 | "description": "Simple skeleton to build projects with sass and bootstrap", 861 | "alias": "skunch" 862 | }, 863 | { 864 | "title": "So Elegant", 865 | "url": "buckle2000/static-so-elegant", 866 | "technologies": "Babel, ES6, JQuery 3, Semantic UI, Stylus, Pug, Moonjs", 867 | "description": "Simple skeleton for Docker-hosted static website/app", 868 | "alias": "so-elegant" 869 | }, 870 | { 871 | "title": "Brunch with Riot", 872 | "url": "xuyizhe/brunch-with-riot", 873 | "technologies": "Riot, Typescript, Pug, Sass", 874 | "description": "A Riot skeleton with TypeScript.", 875 | "alias": "riot" 876 | }, 877 | { 878 | "title": "Brunch with p5.js", 879 | "url": "mattpilla/p5-brunch", 880 | "technologies": "Babel, ES6, p5", 881 | "description": "Brunch skeleton for p5.js", 882 | "alias": "p5" 883 | }, 884 | { 885 | "title": "Express Vue Brunch", 886 | "url": "Digyter/expressjs-vuejs-brunch-skeleton", 887 | "technologies": "ExpressJS, VueJS, Material Design Components", 888 | "description": "Simple skeleton for web app using combined expressjs for backend and vuejs for frontend", 889 | "alias": "express-vue" 890 | }, 891 | { 892 | "title": "Multi Vue Brunch", 893 | "url":"InvenTorrey/MultiVue", 894 | "technologies": "VueJS, MDI, Bootstrap, JQuery", 895 | "description": "Organized to create multiple single page applications or to use Vue as a templating system", 896 | "alias": "multi-vue" 897 | } 898 | ] 899 | } 900 | --------------------------------------------------------------------------------