mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-12-03 11:09:36 -05:00
Update dependencies (including babel to 7.x)
This commit is contained in:
parent
1ff201292b
commit
3dc316f727
7 changed files with 3468 additions and 3796 deletions
10
.babelrc
10
.babelrc
|
@ -1,11 +1,3 @@
|
|||
{
|
||||
presets: [
|
||||
[
|
||||
"env", {
|
||||
"targets": {
|
||||
"browsers": [ "last 6 versions" ]
|
||||
}
|
||||
}
|
||||
]
|
||||
]
|
||||
presets: [ "@babel/preset-env" ]
|
||||
}
|
||||
|
|
1
.browserlistrc
Normal file
1
.browserlistrc
Normal file
|
@ -0,0 +1 @@
|
|||
last 6 versions
|
|
@ -7,7 +7,7 @@
|
|||
"description": "The Hypothetical website template",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"Sortable": "~1.6.0",
|
||||
"Sortable": "~1.7.0",
|
||||
"simplemde": "~1.11.2",
|
||||
"SpinKit": "~1.2.5",
|
||||
"list.js": "^1.5.0"
|
||||
|
|
1186
composer.lock
generated
1186
composer.lock
generated
File diff suppressed because it is too large
Load diff
2
gulpfile.js
vendored
2
gulpfile.js
vendored
|
@ -19,7 +19,7 @@ const babel = require("gulp-babel"),
|
|||
|
||||
// Vue packages
|
||||
const browserify = require("browserify"),
|
||||
vueify = require("vueify"),
|
||||
vueify = require("vueify-next"),
|
||||
source = require("vinyl-source-stream"),
|
||||
buffer = require("vinyl-buffer");
|
||||
|
||||
|
|
6019
package-lock.json
generated
6019
package-lock.json
generated
File diff suppressed because it is too large
Load diff
44
package.json
44
package.json
|
@ -5,42 +5,42 @@
|
|||
"dev": "gulp default watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"browser-sync": "2.24.5"
|
||||
"browser-sync": "2.26.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"autoprefixer": "^8.6.4",
|
||||
"babel-core": "^6.26.3",
|
||||
"@babel/core": "^7.2.2",
|
||||
"@babel/preset-env": "^7.2.3",
|
||||
"autoprefixer": "^9.4.4",
|
||||
"babel-plugin-transform-runtime": "^6.23.0",
|
||||
"babel-preset-env": "^1.7.0",
|
||||
"babelify": "^8.0.0",
|
||||
"bootstrap": "4.1.1",
|
||||
"browserify": "^16.2.2",
|
||||
"es6-promise": "^4.2.4",
|
||||
"fancy-log": "^1.3.2",
|
||||
"gsap": "^2.0.1",
|
||||
"babelify": "^10.0.0",
|
||||
"bootstrap": "4.2.1",
|
||||
"browserify": "^16.2.3",
|
||||
"es6-promise": "^4.2.5",
|
||||
"fancy-log": "^1.3.3",
|
||||
"gsap": "^2.0.2",
|
||||
"gulp": "^4.0.0",
|
||||
"gulp-babel": "^7.0.1",
|
||||
"gulp-clean-css": "^3.9.4",
|
||||
"gulp-babel": "^8.0.0",
|
||||
"gulp-clean-css": "^4.0.0",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-plumber": "^1.2.0",
|
||||
"gulp-postcss": "^7.0.1",
|
||||
"gulp-sass": "^4.0.1",
|
||||
"gulp-plumber": "^1.2.1",
|
||||
"gulp-postcss": "^8.0.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"gulp-sass-glob": "^1.0.9",
|
||||
"gulp-strip-debug": "^3.0.0",
|
||||
"gulp-uglify": "^3.0.0",
|
||||
"gulp-uglify": "^3.0.1",
|
||||
"jquery": "^3.3.1",
|
||||
"minimist": "^1.2.0",
|
||||
"pickadate": "^3.5.6",
|
||||
"popper.js": "^1.14.3",
|
||||
"popper.js": "^1.14.6",
|
||||
"vinyl-buffer": "^1.0.1",
|
||||
"vinyl-source-stream": "^2.0.0",
|
||||
"vue": "^2.5.16",
|
||||
"vue": "^2.5.21",
|
||||
"vue-resource": "^1.5.1",
|
||||
"vue-router": "^3.0.1",
|
||||
"vue-template-compiler": "^2.5.16",
|
||||
"vueify": "^9.4.1",
|
||||
"vue-router": "^3.0.2",
|
||||
"vue-template-compiler": "^2.5.21",
|
||||
"vueify-next": "^9.5.3",
|
||||
"vuex": "^3.0.1",
|
||||
"vuex-router-sync": "^5.0.0",
|
||||
"what-input": "^5.1.0"
|
||||
"what-input": "^5.1.3"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue