cookiecutter-django/{{cookiecutter.repo_name}}/package.json
Saurabh Kumar f79314ea2b feat(grunt): Add grunt task runner.
* Livereload server.
* Auto compile scss files.

* Heroku python buildpack needs to be specified explicitly to avoid auto detections
of the app as a `Node` app due to presence of `Package.json`.
2014-01-10 05:06:35 +05:30

18 lines
409 B
JSON

{
"name": "{{cookiecutter.project_name}}",
"version": "{{ cookiecutter.version }}",
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-watch": "~0.5.3",
"grunt-bg-shell": "~2.3.1",
"connect-livereload": "~0.3.2",
"grunt-contrib-compass": "~0.7.0",
"time-grunt": "~0.2.7",
"load-grunt-tasks": "~0.2.1"
},
"engines": {
"node": ">=0.8.0"
}
}