rugby-board/rugby-board-node

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "rugby-board-node",
  "version": "1.0.0",
  "author": "David Zhang",
  "license": "MIT",
  "scripts": {
    "dev": "webpack-dev-server --config ./config/webpack.prod.config.js --host 127.0.0.1 --devtool eval --progress --colors --hot --content-base dist",
    "dev-build": "webpack -p --config ./config/webpack.dev.config.js --progress",
    "build": "webpack -p --config ./config/webpack.prod.config.js --progress",
    "server": "node server",
    "test": "mocha test",
    "lint": "eslint client --ext .js --ext .jsx && eslint server --ext .js && scss-lint client/css",
    "heroku-postbuild": "webpack -p --config ./config/webpack.prod.config.js",
    "profile": "webpack --config ./config/webpack.prod.config.js --profile --json > webpack-stats.json"
  },
  "dependencies": {
    "body-parser": "^1.17.2",
    "compression": "^1.7.0",
    "date-fns": "^1.29.0",
    "express": "^4.15.3",
    "form-data": "^2.2.0",
    "history": "^4.6.3",
    "marked": "^0.3.6",
    "morgan": "^1.8.2",
    "node-fetch": "^1.7.1",
    "nprogress": "^0.2.0",
    "preact": "^8.1.0",
    "preact-portal": "^1.1.2",
    "preact-router": "^2.5.2",
    "timeoutify-promise": "^0.2.0"
  },
  "devDependencies": {
    "babel-core": "^6.24.1",
    "babel-loader": "^7.0.0",
    "babel-plugin-transform-react-jsx": "^6.24.1",
    "babel-preset-es2015": "^6.24.1",
    "chai": "^4.0.2",
    "css-loader": "^0.28.4",
    "eslint": "^3.19.0",
    "eslint-config-airbnb": "latest",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jsx-a11y": "^5.0.1",
    "eslint-plugin-react": "^7.0.1",
    "extract-text-webpack-plugin": "^2.1.0",
    "file-loader": "^0.11.2",
    "html-webpack-plugin": "^2.28.0",
    "mocha": "^3.4.2",
    "mz": "^2.6.0",
    "node-sass": "^4.9.3",
    "sass-loader": "^6.0.5",
    "scss-lint": "^0.0.0",
    "source-map-loader": "^0.2.1",
    "style-loader": "^0.18.1",
    "supertest": "^3.0.0",
    "uglifyjs-webpack-plugin": "^0.4.6",
    "url-loader": "^0.5.9",
    "webpack": "^2.6.1",
    "webpack-dev-server": "^2.4.5",
    "webpack-hot-middleware": "^2.18.0",
    "webpack-node-externals": "^1.6.0"
  },
  "engines": {
    "node": "6.11.1"
  }
}