Skip to content

Instantly share code, notes, and snippets.

@HiroshiHara
Last active July 26, 2020 06:24
Show Gist options
  • Save HiroshiHara/6a0ca15ce132a078cf2422cc4c8b37db to your computer and use it in GitHub Desktop.
Save HiroshiHara/6a0ca15ce132a078cf2422cc4c8b37db to your computer and use it in GitHub Desktop.
package.json for React + webpack + babel development. (WIP)
{
"name": "enter project name",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"flow": "flow",
"start": "webpack-dev-server --open",
"build": "webpack"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-flow": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"css-loader": "^3.6.0",
"eslint": "^7.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"flow": "^0.2.3",
"flow-bin": "^0.129.0",
"flow-typed": "^3.2.1",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment