Skip to content

Instantly share code, notes, and snippets.

@jpgcode
Last active December 28, 2015 11:19
Show Gist options
  • Save jpgcode/7492561 to your computer and use it in GitHub Desktop.
Save jpgcode/7492561 to your computer and use it in GitHub Desktop.
Basic package.json file with the dependencies necessary to use grunt with server, sass, compass and jshint
{
"name": "Project",
"version": "0.1.0",
"description": "Boilerplate for your project",
"author": "Jose Pablo Granados",
"devDependencies": {
"grunt": "~0.4.1",
"matchdep": "~0.3.0",
"grunt-open": "~0.2.2",
"grunt-contrib-connect": "~0.5.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-compass": "~0.6.0",
"grunt-contrib-jshint": "~0.7.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-yui-compressor": "~0.3.0",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-useref": "0.0.16"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment