Skip to content

Instantly share code, notes, and snippets.

@linkdigitaluk
Last active August 28, 2019 10:59
Show Gist options
  • Save linkdigitaluk/673377a17138a9e4a6dd0e5ae7fa0176 to your computer and use it in GitHub Desktop.
Save linkdigitaluk/673377a17138a9e4a6dd0e5ae7fa0176 to your computer and use it in GitHub Desktop.
[WP Setup - package.json] A sample WP Gulp Package file if you want to bake one yourself. #wpGulp #NPM
{
"name": "[[ Project Name ]]",
"description": "A WPGulp based project.",
"version": "1.0.0",
"author": "Link Digital",
"repository": {
"type": "git",
"url": "[[ Git Repo ]]"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"beepbeep": "^1.2.2",
"browser-sync": "^2.11.1",
"eslint": "^5.5.0",
"eslint-config-wordpress": "^2.0.0",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^6.0.0",
"gulp-babel": "^8.0.0",
"gulp-cache": "^1.0.2",
"gulp-concat": "^2.5.2",
"gulp-filter": "^5.1.0",
"gulp-imagemin": "^4.1.0",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-merge-media-queries": "^0.2.1",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.2.0",
"gulp-remember": "^1.0.1",
"gulp-rename": "^1.2.0",
"gulp-rtlcss": "^1.2.0",
"gulp-sass": "^4.0.1",
"gulp-sort": "^2.0.0",
"gulp-sourcemaps": "^2.6.2",
"gulp-uglify": "^3.0.0",
"gulp-uglifycss": "^1.0.6",
"gulp-wp-pot": "^2.0.7"
},
"scripts": {
"start": "gulp",
"styles": "gulp styles",
"stylesRTL": "gulp stylesRTL",
"vendorsJS": "gulp vendorsJS",
"customJS": "gulp customJS",
"images": "gulp images",
"clearCache": "gulp clearCache",
"translate": "gulp translate"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment