mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 04:07:48 +03:00
f79314ea2b
* 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`.
18 lines
409 B
JSON
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"
|
|
}
|
|
}
|