Skip to content

Instantly share code, notes, and snippets.

@YaroslavW
Created June 21, 2019 16:05
Show Gist options
  • Save YaroslavW/38037c199c3ccaa284a50f96cf0a00f8 to your computer and use it in GitHub Desktop.
Save YaroslavW/38037c199c3ccaa284a50f96cf0a00f8 to your computer and use it in GitHub Desktop.
package.json file for create-react-app-3
{
"name": "your-project-name",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "2.1.8"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment