UNPKG

react-static-webpack-plugin

Version:

Build full static sites using React, React Router and Webpack

78 lines (77 loc) 2.51 kB
{ "name": "react-static-boilerplate", "version": "2.0.0", "description": "A boilerplate for building static sites with React and React Router", "repository": { "type": "git", "url": "https://github.com/iansinnott/react-static-boilerplate" }, "bugs": { "url": "https://github.com/iansinnott/react-static-boilerplate/issues" }, "author": "Ian Sinnott <ian@iansinnott.com> (http://iansinnott.com)", "license": "MIT", "homepage": "", "engines": { "node": "^6.9.1" }, "dependencies": { "autoprefixer": "^6.5.3", "axis": "^0.6.1", "babel-cli": "^6.9.0", "babel-core": "^6.9.0", "babel-eslint": "^7.1.1", "babel-loader": "^6.2.4", "babel-plugin-react-transform": "^2.0.2", "babel-preset-es2015": "^6.9.0", "babel-preset-react": "^6.5.0", "babel-preset-react-hmre": "^1.1.1", "babel-preset-stage-1": "^6.5.0", "classnames": "^2.2.5", "cross-env": "^3.1.3", "css-loader": "^0.26.0", "eslint": "^3.11.1", "eslint-config-rackt": "^1.1.1", "eslint-config-zen": "^2.0.0", "eslint-plugin-flowtype": "^2.29.1", "eslint-plugin-react": "^6.8.0", "express": "^4.13.4", "extract-text-webpack-plugin": "beta", "file-loader": "^0.9.0", "normalize.css": "^5.0.0", "postcss-loader": "^1.2.0", "react-transform-catch-errors": "^1.0.2", "react-transform-hmr": "^1.0.4", "redbox-react": "^1.2.5", "rimraf": "^2.5.2", "rupture": "^0.6.1", "style-loader": "^0.13.1", "stylus": "^0.54.5", "stylus-loader": "^2.1.0", "url-loader": "^0.5.7", "webpack": "beta", "webpack-dev-middleware": "^1.6.1", "webpack-hot-middleware": "^2.10.0", "react": "^15.1.0", "history": "^4.5.0", "react-dom": "^15.1.0", "react-router": "^3.0.0" }, "scripts": { "build-app-time": "app-time build", "clean": "rimraf build", "lint": "eslint client", "conf": "babel-node ./scripts/generate-nginx-conf.js", "test": "echo 'No tests specified.'", "start:dev": "babel-node ./server.js", "start": "npm run start:dev", "build:static": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js", "build": "npm run clean && npm run build:static", "preversion": "npm test", "postversion": "git push && git push --tags", "bump:patch": "npm version patch -m \"v%s\"", "bump:minor": "npm version minor -m \"v%s\"", "bump:major": "npm version major -m \"v%s\"", "bump": "npm run bump:patch" } }