Skip to content

Instantly share code, notes, and snippets.

@reatexpk
Last active June 5, 2019 13:43
Show Gist options
  • Save reatexpk/dd63d6932d00e85104605eba096ff6ed to your computer and use it in GitHub Desktop.
Save reatexpk/dd63d6932d00e85104605eba096ff6ed to your computer and use it in GitHub Desktop.
Starter kit
{
"name": "app",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"connected-react-router": "^6.3.2",
"history": "^4.9.0",
"normalize.css": "^8.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.1",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"styled-components": "^4.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx)": [
"eslint --fix",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment