Last active
August 29, 2015 14:11
-
-
Save jaceju/0d2b64e7917f56599ddd to your computer and use it in GitHub Desktop.
package.json for gulpfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "prototype-template", | |
"version": "0.0.0", | |
"private": true, | |
"devDependencies": { | |
"backbone": "^1.1.2", | |
"browserify": "^6.3.2", | |
"browserify-shim": "^3.8.0", | |
"del": "~0.1.3", | |
"gulp": "~3.8.8", | |
"gulp-autoprefixer": "~1.0.1", | |
"gulp-cache": "^0.2.4", | |
"gulp-filter": "^1.0.2", | |
"gulp-flatten": "0.0.4", | |
"gulp-imagemin": "~1.0.1", | |
"gulp-jade": "^0.10.0", | |
"gulp-jest": "~0.2.2", | |
"gulp-jshint": "^1.9.0", | |
"gulp-livereload": "^2.1.1", | |
"gulp-load-plugins": "~0.7.0", | |
"gulp-plumber": "^0.6.6", | |
"gulp-rev": "^2.0.1", | |
"gulp-rev-replace": "^0.3.1", | |
"gulp-ruby-sass": "~0.7.1", | |
"gulp-size": "~1.1.0", | |
"gulp-uglify": "^1.0.2", | |
"gulp-useref": "~0.4.4", | |
"gulp-util": "~3.0.1", | |
"gulp-webserver": "^0.9.0", | |
"jade": "^1.8.1", | |
"jest": "~0.1.37", | |
"jshint-stylish": "^1.0.0", | |
"react": ">=0.12.0", | |
"reactify": ">0.15.0", | |
"run-sequence": "^1.0.1", | |
"uglify-save-license": "^0.4.1", | |
"vinyl-transform": "^1.0.0" | |
}, | |
"engines": { | |
"node": ">=0.10.0" | |
}, | |
"browserify": { | |
"transform": [ | |
"browserify-shim", | |
[ | |
"reactify", | |
{ | |
"es6": true | |
} | |
] | |
] | |
}, | |
"browser": { | |
"jquery": "./public/bower_components/jquery/dist/jquery.js" | |
}, | |
"browserify-shim": { | |
"jquery": "$" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment