Created
October 24, 2019 14:53
-
-
Save heiwais25/71b083d689343b711b6d4d1e7f091194 to your computer and use it in GitHub Desktop.
Basic Setup json to run create react app with redux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "name", | |
"version": "0.1.0", | |
"private": true, | |
"dependencies": { | |
"@types/jest": "24.0.19", | |
"@types/node": "12.11.6", | |
"@types/react": "16.9.9", | |
"@types/react-dom": "16.9.2", | |
"immer": "^4.0.2", | |
"react": "^16.11.0", | |
"react-dom": "^16.11.0", | |
"react-router-dom": "^5.1.2", | |
"react-scripts": "3.2.0", | |
"redux": "^4.0.4", | |
"redux-action": "^1.2.2", | |
"redux-logger": "^3.0.6", | |
"typescript": "3.6.4" | |
}, | |
"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" | |
] | |
}, | |
"devDependencies": { | |
"@types/react-router-dom": "^5.1.0", | |
"@types/redux": "^3.6.0", | |
"@types/redux-action": "^1.2.5", | |
"@types/redux-logger": "^3.0.7" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment