Last active
May 19, 2018 17:57
-
-
Save DevJulianSalas/9b73b99c0a857144e87c0ea2c31c3aea to your computer and use it in GitHub Desktop.
A starting point package.json to vuejs projects
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": "", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"serve": "vue-cli-service serve", | |
"build": "vue-cli-service build", | |
"lint": "vue-cli-service lint" | |
}, | |
"dependencies": { | |
"axios": "^0.18.0", | |
"lodash": "^4.17.10", | |
"vue": "^2.5.16", | |
"vue-authenticate": "^1.3.4", | |
"vue-meta": "^1.5.0", | |
"vue-router": "^3.0.1", | |
"vue-youtube": "^1.2.5", | |
"vuetify": "^1.0.17", | |
"vuex": "^3.0.1", | |
"vuex-persistedstate": "^2.5.2" | |
}, | |
"devDependencies": { | |
"@vue/cli-plugin-babel": "^3.0.0-beta.9", | |
"@vue/cli-plugin-eslint": "^3.0.0-beta.9", | |
"@vue/cli-service": "^3.0.0-beta.9", | |
"@vue/eslint-config-standard": "^3.0.0-beta.9", | |
"stylus": "^0.54.5", | |
"stylus-loader": "^3.0.1", | |
"vue-template-compiler": "^2.5.13" | |
}, | |
"browserslist": [ | |
"> 1%", | |
"last 2 versions", | |
"not ie <= 8" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment