Created
May 1, 2017 17:03
-
-
Save sl-digital/9d8e20452334af90523aa3dcb5eb2282 to your computer and use it in GitHub Desktop.
Webpack Package File for Laravel/Vue
This file contains 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": "vue-webpack", | |
"version": "1.0.0", | |
"main": "index.js", | |
"license": "MIT", | |
"devDependencies": { | |
"babel-core": "^6.24.1", | |
"babel-loader": "^7.0.0", | |
"babel-plugin-transform-runtime": "^6.23.0", | |
"babel-preset-es2015": "^6.24.1", | |
"babel-preset-stage-0": "^6.24.1", | |
"babel-runtime": "^6.23.0", | |
"chalk": "^1.1.3", | |
"css-loader": "^0.28.0", | |
"extract-text-webpack-plugin": "^2.1.0", | |
"file-loader": "^0.11.1", | |
"friendly-errors-webpack-plugin": "^1.6.1", | |
"node-sass": "^4.5.2", | |
"nodemon": "^1.11.0", | |
"optimize-css-assets-webpack-plugin": "^1.3.1", | |
"ora": "^1.2.0", | |
"postcss-loader": "^1.3.3", | |
"rimraf": "^2.6.1", | |
"sass-loader": "^6.0.3", | |
"style-loader": "^0.16.1", | |
"url-loader": "^0.5.8", | |
"vue": "^2.3.0", | |
"vue-loader": "^12.0.2", | |
"vue-resource": "^1.3.1", | |
"vue-router": "^2.5.2", | |
"vue-style-loader": "^3.0.1", | |
"vue-template-compiler": "^2.3.0", | |
"vuex": "^2.3.1", | |
"webpack": "^2.4.1" | |
}, | |
"dependencies": { | |
"axios": "^0.16.1", | |
"bootstrap-sass": "^3.3.7", | |
"jquery": "^3.2.1" | |
}, | |
"browserslist": [ | |
"> 1%", | |
"last 2 versions", | |
"not ie <= 8" | |
], | |
"scripts": { | |
"build:dev": "NODE_ENV=development node webpack.init.js", | |
"build:prod": "NODE_ENV=production node webpack.init.js", | |
"watch:dev": "NODE_ENV=development-watch node webpack.init.js", | |
"watch:prod": "NODE_ENV=production-watch node webpack.init.js" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment