Fixed package.json to a functioning set of dependencies.

- upgraded everything that Gulp uses
- locked packages to specific versions
- removed npm-shrinkwrap.json because it contained a macOS-specific dependency
This commit is contained in:
Peter Deltchev 2016-06-17 22:23:02 -07:00
parent 0cbe82725f
commit f5f58760e1
3 changed files with 32 additions and 3364 deletions

View file

@ -119,7 +119,7 @@ gulp.task("styles-app", function () {
cascade: false cascade: false
})) }))
.pipe(plug.concat("app.css")) .pipe(plug.concat("app.css"))
.pipe(plug.minifyCss()) .pipe(plug.cleanCss())
.pipe(header(licenseHeader)) .pipe(header(licenseHeader))
.pipe(gulp.dest("public/build/styles")) .pipe(gulp.dest("public/build/styles"))
@ -147,7 +147,7 @@ gulp.task("styles-embed", function () {
cascade: false cascade: false
})) }))
.pipe(plug.concat("embed.css")) .pipe(plug.concat("embed.css"))
.pipe(plug.minifyCss()) .pipe(plug.cleanCss())
.pipe(header(licenseHeader)) .pipe(header(licenseHeader))
.pipe(gulp.dest("public/build/styles")); .pipe(gulp.dest("public/build/styles"));
}); });

3330
npm-shrinkwrap.json generated

File diff suppressed because it is too large Load diff

View file

@ -9,37 +9,35 @@
"packages": {}, "packages": {},
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {
"angular": "^1.5.6", "angular": "1.5.6",
"angular-chart.js": "^1.0.0-alpha6", "angular-chart.js": "1.0.0-alpha6",
"angular-strap": "^2.3.8", "angular-strap": "2.3.8",
"angular-ui-router": "^0.2.18", "angular-ui-router": "0.2.18",
"chart.js": "^2.1.0", "chart.js": "2.1.0",
"coffee-loader": "^0.7.2", "coffee-loader": "0.7.2",
"coffee-script": "^1.10.0", "coffee-script": "1.10.0",
"gulp": "^3.9.0", "gulp": "3.9.1",
"gulp-angular-templatecache": "^1.6.0", "gulp-angular-templatecache": "1.8.0",
"gulp-autoprefixer": "^2.2.0", "gulp-autoprefixer": "3.1.0",
"gulp-cached": "^1.0.4", "gulp-cached": "1.1.0",
"gulp-concat": "^2.5.2", "gulp-clean-css": "2.0.10",
"gulp-header": "^1.7.1", "gulp-concat": "2.6.0",
"gulp-if": "^1.2.5", "gulp-header": "1.8.2",
"gulp-less": "^3.0.3", "gulp-if": "2.0.1",
"gulp-livereload": "^3.8.0", "gulp-less": "3.1.0",
"gulp-load-plugins": "^0.10.0", "gulp-livereload": "3.8.1",
"gulp-minify-css": "^1.2.4", "gulp-load-plugins": "1.2.4",
"gulp-notify": "^2.2.0", "gulp-notify": "2.2.0",
"gulp-order": "^1.1.1", "gulp-plumber": "1.1.0",
"gulp-plumber": "^1.0.0", "gulp-sourcemaps": "1.6.0",
"gulp-sourcemaps": "^1.5.1", "gulp-util": "3.0.7",
"gulp-util": "^3.0.7", "jquery": "2.2.0",
"gulp-webpack": "^1.5.0", "jquery-ui": "1.10.5",
"jquery": "^2.2.0", "script-loader": "0.7.0",
"jquery-ui": "^1.10.5", "underscore": "1.8.3",
"script-loader": "^0.6.1", "webpack": "1.13.1",
"underscore": "^1.8.3", "webpack-dev-server": "1.14.1",
"webpack": "^1.13.1", "webpack-stream": "3.2.0",
"webpack-dev-server": "^1.14.1", "yargs": "4.7.1"
"webpack-stream": "^3.2.0",
"yargs": "^3.7.2"
} }
} }