2014-01-10 01:03:28 +04:00
|
|
|
{
|
2016-04-20 20:00:35 +03:00
|
|
|
"name": "{{cookiecutter.project_slug}}",
|
2014-01-10 01:03:28 +04:00
|
|
|
"version": "{{ cookiecutter.version }}",
|
|
|
|
"dependencies": {},
|
|
|
|
"devDependencies": {
|
2016-06-04 03:31:36 +03:00
|
|
|
{% if cookiecutter.js_task_runner == 'Grunt' %}
|
|
|
|
"autoprefixer-core": "~5.2.1",
|
2018-01-21 04:05:12 +03:00
|
|
|
{% if cookiecutter.custom_bootstrap_compilation == 'y' %}
|
|
|
|
"bootstrap": "^4.0.0",
|
|
|
|
{% endif %}
|
2016-06-04 03:31:36 +03:00
|
|
|
"connect-livereload": "~0.3.2",
|
|
|
|
"cssnano": "~2.1.0",
|
2015-07-23 21:49:26 +03:00
|
|
|
"grunt": "~0.4.5",
|
2014-01-10 01:03:28 +04:00
|
|
|
"grunt-bg-shell": "~2.3.1",
|
2016-06-04 03:31:36 +03:00
|
|
|
"grunt-contrib-watch": "~0.6.1",
|
2015-07-23 21:49:26 +03:00
|
|
|
"grunt-postcss": "~0.5.5",
|
2016-06-04 03:31:36 +03:00
|
|
|
"grunt-sass": "~1.0.0",
|
2018-01-21 04:05:12 +03:00
|
|
|
{% if cookiecutter.custom_bootstrap_compilation == 'y' %}
|
|
|
|
"jquery": "^3.2.1-slim",
|
|
|
|
{% endif %}
|
2016-06-04 03:31:36 +03:00
|
|
|
"load-grunt-tasks": "~3.2.0",
|
|
|
|
"pixrem": "~1.3.1",
|
2018-01-21 04:05:12 +03:00
|
|
|
{% if cookiecutter.custom_bootstrap_compilation == 'y' %}
|
|
|
|
"popper.js": "^1.12.3",
|
|
|
|
{% endif %}
|
2016-06-04 03:31:36 +03:00
|
|
|
"time-grunt": "~1.2.1"
|
|
|
|
{% elif cookiecutter.js_task_runner == 'Gulp' %}
|
2018-01-21 04:05:12 +03:00
|
|
|
{% if cookiecutter.custom_bootstrap_compilation == 'y' %}
|
|
|
|
"bootstrap": "^4.0.0",
|
|
|
|
{% endif %}
|
2017-06-21 23:12:22 +03:00
|
|
|
"browser-sync": "^2.14.0",
|
|
|
|
"del": "^2.2.2",
|
2016-06-04 03:31:36 +03:00
|
|
|
"gulp": "^3.9.1",
|
2016-08-25 13:37:17 +03:00
|
|
|
"gulp-autoprefixer": "^3.1.1",
|
2018-01-21 04:05:12 +03:00
|
|
|
{% if cookiecutter.custom_bootstrap_compilation == 'y' %}
|
|
|
|
"gulp-concat": "^2.6.1",
|
|
|
|
{% endif %}
|
2017-06-21 23:12:22 +03:00
|
|
|
"gulp-cssnano": "^2.1.2",
|
|
|
|
"gulp-imagemin": "^3.0.3",
|
2016-06-04 03:31:36 +03:00
|
|
|
"gulp-pixrem": "^1.0.0",
|
2017-06-21 23:12:22 +03:00
|
|
|
"gulp-plumber": "^1.1.0",
|
2016-06-04 03:31:36 +03:00
|
|
|
"gulp-rename": "^1.2.2",
|
2017-06-21 23:12:22 +03:00
|
|
|
"gulp-sass": "^2.3.2",
|
|
|
|
"gulp-uglify": "^2.0.0",
|
|
|
|
"gulp-util": "^3.0.7",
|
2018-01-21 04:05:12 +03:00
|
|
|
{% if cookiecutter.custom_bootstrap_compilation == 'y' %}
|
|
|
|
"jquery": "^3.2.1-slim",
|
|
|
|
"popper.js": "^1.12.3",
|
|
|
|
{% endif %}
|
2016-08-25 13:37:17 +03:00
|
|
|
"run-sequence": "^1.2.2"
|
2016-06-04 03:31:36 +03:00
|
|
|
{% endif %}
|
2014-01-10 01:03:28 +04:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=0.8.0"
|
|
|
|
}
|
|
|
|
}
|