react-static-webpack-plugin
Version:
Build full static sites using React, React Router and Webpack
73 lines (72 loc) • 2.32 kB
JSON
{
"name": "react-static-boilerplate",
"version": "0.3.0",
"description": "A boilerplate for building static sites with React and React Router",
"engines": {
"node": "^6.1"
},
"scripts": {
"clean": "rimraf public",
"lint": "eslint src",
"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": "npm run bump:patch"
},
"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": "",
"dependencies": {
"autoprefixer-loader": "^3.2.0",
"axis": "^0.6.1",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"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": "^1.0.7",
"css-loader": "^0.23.1",
"eslint": "^2.10.2",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^5.1.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"history": "^2.1.1",
"normalize.css": "^4.1.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^3.0.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": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}