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' %}
|
2018-03-06 19:46:21 +03:00
|
|
|
"autoprefixer": "~8.1.0",
|
2018-01-21 04:05:12 +03:00
|
|
|
{% if cookiecutter.custom_bootstrap_compilation == 'y' %}
|
|
|
|
"bootstrap": "^4.0.0",
|
|
|
|
{% endif %}
|
2018-03-06 19:46:21 +03:00
|
|
|
"connect-livereload": "~0.6.0",
|
|
|
|
"cssnano": "~3.10.0",
|
|
|
|
"grunt": "~1.0.2",
|
2014-01-10 01:03:28 +04:00
|
|
|
"grunt-bg-shell": "~2.3.1",
|
2018-03-06 19:46:21 +03:00
|
|
|
"grunt-contrib-watch": "~1.0.0",
|
|
|
|
"grunt-postcss": "~0.9.0",
|
|
|
|
"grunt-sass": "~2.1.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",
|
2018-03-06 19:46:21 +03:00
|
|
|
"pixrem": "~4.0.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",
|
2018-03-06 19:46:21 +03:00
|
|
|
"gulp-autoprefixer": "^5.0.0",
|
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",
|
2018-03-06 19:46:21 +03:00
|
|
|
"gulp-imagemin": "^4.1.0",
|
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",
|
2018-03-06 19:46:21 +03:00
|
|
|
"gulp-sass": "^3.1.0",
|
|
|
|
"gulp-uglify": "^3.0.0",
|
2017-06-21 23:12:22 +03:00
|
|
|
"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 %}
|
2018-03-06 19:46:21 +03:00
|
|
|
"run-sequence": "^2.1.1"
|
2016-06-04 03:31:36 +03:00
|
|
|
{% endif %}
|
2014-01-10 01:03:28 +04:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=0.8.0"
|
2018-03-06 19:46:21 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
{% if cookiecutter.js_task_runner == 'Grunt' %}
|
|
|
|
"dev": "grunt serve"
|
|
|
|
{% elif cookiecutter.js_task_runner == 'Gulp' %}
|
|
|
|
"dev": "gulp"
|
|
|
|
{% endif %}
|
|
|
|
|
2014-01-10 01:03:28 +04:00
|
|
|
}
|
|
|
|
}
|