Last active
December 17, 2019 20:18
-
-
Save marwinious/80260cfc3f2473b4e637c28b36723b9e to your computer and use it in GitHub Desktop.
Package.json sample for gulp environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "app_name_here", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "index.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "author": "", | |
| "license": "ISC", | |
| "dependencies": { | |
| "gulp": "^4.0.2" | |
| }, | |
| "devDependencies": { | |
| "@babel/core": "^7.7.5", | |
| "@babel/preset-env": "^7.7.6", | |
| "gulp-babel": "^8.0.0", | |
| "gulp-clean-css": "^4.2.0", | |
| "gulp-concat": "^2.6.1", | |
| "gulp-rename": "^2.0.0", | |
| "gulp-sass": "^4.0.2", | |
| "gulp-uglify": "^3.0.2" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment