Skip to content

Instantly share code, notes, and snippets.

@GianlucaGuarini
Created April 21, 2017 21:59
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GianlucaGuarini/1ada071330daf9a3d29d076f13947883 to your computer and use it in GitHub Desktop.
Save GianlucaGuarini/1ada071330daf9a3d29d076f13947883 to your computer and use it in GitHub Desktop.
react-redux-boilerplate package.json
{
"name": "react-redux-boilerplate",
"version": "0.7.14",
"description": "React Redux Boilerplate is a workflow boilerplate that make life easier for developers by providing a virtual development environment and production ready build process framework out of the box.",
"scripts": {
"dev": "NODE_ENV=development webpack-dashboard -p 3300 -c red -- node bin/commands.js dev",
"build": "NODE_ENV=production node bin/commands.js build",
"build:release": "NODE_ENV=release node bin/commands.js build",
"test": "jest --verbose",
"lint": "node bin/commands.js lint"
},
"repository": {
"type": "git",
"url": "https://github.com/iroy2000/react-redux-boilerplate.git"
},
"homepage": "https://github.com/iroy2000/react-redux-boilerplate",
"author": "Roy Yu <iroy2000@gmail.com>",
"license": "MIT",
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"babel-runtime": "^6.23.0",
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^1.1.4",
"case-sensitive-paths-webpack-plugin": "^1.1.4",
"colors": "^1.1.2",
"concurrently": "^3.4.0",
"config": "^1.25.1",
"css-loader": "^0.27.3",
"debug": "^2.6.3",
"dotenv": "^4.0.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"image-webpack-loader": "^3.3.0",
"jest-cli": "^19.0.2",
"jsonfile": "^2.4.0",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"postcss-nested": "^1.0.0",
"precss": "^1.4.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^3.0.2",
"shelljs": "^0.7.7",
"style-loader": "^0.16.0",
"webpack": "^2.3.2",
"webpack-bundle-analyzer": "^2.4.0",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.4.2",
"webpack-s3-plugin": "^1.0.0-rc.0"
},
"dependencies": {
"immutable": "^3.8.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^5.0.1",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-actions": "^2.0.1",
"redux-form": "^6.6.0",
"redux-promised": "^1.3.0",
"reselect": "^3.0.0"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"automock": true,
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js|jsx|json)$",
"moduleFileExtensions": [
"js",
"json",
"jsx"
]
},
"keywords": [
"React",
"Redux",
"webpack",
"webpack 2",
"PostCSS",
"Babel",
"ESLint"
]
}
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment