Skip to content

Instantly share code, notes, and snippets.

View OoogleBoogle's full-sized avatar

Simon Attfield OoogleBoogle

  • San Francisco, USA
View GitHub Profile
@OoogleBoogle
OoogleBoogle / devDependencies.json
Last active July 29, 2016 01:36
boilerplate: basic gulp setup
"devDependencies": {
"browserify": "^13.0.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.0",
"gulp-imagemin": "^3.0.1",
"gulp-live-server": "0.0.30",
"gulp-minify-html": "^1.0.6",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
@OoogleBoogle
OoogleBoogle / setup_react.sh
Last active July 31, 2016 01:09
setup_react.sh
# Colors
ESC_SEQ="\x1b["
RESET=$ESC_SEQ"39;49;00m"
RED=$ESC_SEQ"31;01m"
GREEN=$ESC_SEQ"32;01m"
#initial checks
git="$(which git)"
npm="$(which npm)"
node="$(which node)"