Skip to content

Instantly share code, notes, and snippets.

@cycold
Last active January 23, 2016 05:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cycold/f751e11e33fab5941a1e to your computer and use it in GitHub Desktop.
Save cycold/f751e11e33fab5941a1e to your computer and use it in GitHub Desktop.
webpack package json
{
"name": "vue-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"debug-details": "webpack -d --display-chunks --display-reasons --display-error-details --display-modules --config webpack.dev.config.js",
"debug-build": "rimraf dist && webpack -d --progress --display-error-details --config webpack.dev.config.js",
"dev": "webpack-dev-server --inline --hot --config webpack.dev.config.js",
"build": "rimraf dist && webpack --progress --hide-modules --config webpack.prod.config.js"
},
"author": "cy",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.1",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-runtime": "^5.8.35",
"bundle-loader": "^0.5.4",
"caniuse-db": "^1.0.30000388",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"has-flag": "^1.0.0",
"hash-change": "^0.1.0",
"html-loader": "^0.4.0",
"html-webpack-plugin": "^2.7.1",
"jade": "^1.11.0",
"jade-html-loader": "0.0.3",
"jade-loader": "^0.8.0",
"json-loader": "^0.5.4",
"node-sass": "^3.4.2",
"postcss": "^5.0.14",
"postcss-loader": "^0.8.0",
"precss": "^1.4.0",
"rimraf": "^2.5.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"stylus-loader": "^1.5.0",
"template-html-loader": "0.0.3",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "^1.2.2",
"vue-html-loader": "^1.1.0",
"vue-loader": "^8.0.2",
"vue-style-loader": "^1.0.0",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"jquery": "^2.2.0",
"lodash": "^4.0.0",
"moment": "^2.11.1",
"vue": "^1.0.15",
"vue-router": "^0.7.9"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment