package.json
{
"name": "avalon-webpack-start",
"main": "mian.js",
"scripts": {
"start": "bnr dll && bnr dev",
"dev": "bnr dev",
"dll": "bnr dll",
"build": "bnr build",
"bundle": "bnr build:bundle",
"deploy": "bnr deploy"
},
"betterScripts": {
"dev": {
"command": "node ./internals/webpack/server.js",
"env": {
"$Server": "true",
"NODE_ENV": "development"
}
},
"dll": {
"command": "webpack --progress --config ./internals/webpack/webpack.dll.js",
"env": {
"NODE_ENV": "production"
}
},
"build": {
"command": "webpack --progress --config ./internals/webpack/webpack.prod.js",
"env": {
"NODE_ENV": "development"
}
},
"build:bundle": {
"command": "webpack --progress --config ./internals/webpack/webpack.prod.js",
"env": {
"NODE_ENV": "production",
"$Analyzer": "true"
}
},
"deploy": {
"command": "webpack --progress --config ./internals/webpack/webpack.prod.js",
"env": {
"NODE_ENV": "production"
}
}
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"better-npm-run": "^0.1.0",
"bundle-loader": "^0.5.5",
"cache-loader": "^1.0.3",
"clean-webpack-plugin": "^0.1.16",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"express": "^4.15.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"glob": "^7.1.2",
"happypack": "^4.0.0",
"html-webpack-include-assets-plugin": "^0.0.7",
"html-webpack-plugin": "^2.30.1",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-modules": "^0.8.0",
"postcss-url": "^7.1.2",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.5.9",
"webpack": "^3.5.6",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dashboard": "^0.4.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"avalon2": "^2.2.9"
}
}