Skip to content

Commit

Permalink
Routing fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kpyszkowski committed Aug 16, 2021
1 parent f06634b commit a98a037
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 60 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ jsconfig.json
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Local Netlify folder
.netlify
Empty file added netlify.toml
Empty file.
121 changes: 61 additions & 60 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,62 +1,63 @@
{
"name": "expenses",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@reach/router": "^1.3.4",
"@styled-icons/fluentui-system-filled": "^10.35.0",
"@styled-icons/fluentui-system-regular": "^10.35.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"chart.js": "^3.5.0",
"formik": "^2.2.9",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-chartjs-2": "^3.0.4",
"react-dom": "^17.0.2",
"react-hook-form": "^7.12.0",
"react-horizontal-scrolling-menu": "^0.7.10",
"react-icons": "^4.2.0",
"react-redux": "^7.2.4",
"react-scripts": "4.0.3",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"styled-components": "^5.3.0",
"uuid": "^8.3.2",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"prettier-eslint": "^12.0.0"
}
"name": "expenses",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@reach/router": "^1.3.4",
"@styled-icons/fluentui-system-filled": "^10.35.0",
"@styled-icons/fluentui-system-regular": "^10.35.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"chart.js": "^3.5.0",
"formik": "^2.2.9",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-chartjs-2": "^3.0.4",
"react-dom": "^17.0.2",
"react-hook-form": "^7.12.0",
"react-horizontal-scrolling-menu": "^0.7.10",
"react-icons": "^4.2.0",
"react-redux": "^7.2.4",
"react-scripts": "4.0.3",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"styled-components": "^5.3.0",
"uuid": "^8.3.2",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"prettier-eslint": "^12.0.0"
},
"homepage": "."
}

0 comments on commit a98a037

Please sign in to comment.