Merge branch 'staging' into 'master'
Complete the Main Application Functionalities See merge request !36
.prettierrc
0 → 100644
_redirects
0 → 100644
... | ... | @@ -3,14 +3,28 @@ |
"version": "0.1.0", | ||
"private": true, | ||
"dependencies": { | ||
"@reach/router": "^1.3.1", | ||
"react": "^16.12.0", | ||
"react-dom": "^16.12.0", | ||
"react-scripts": "3.3.1" | ||
"@emotion/babel-preset-css-prop": "^10.0.27", | ||
"@emotion/core": "^10.0.28", | ||
"@emotion/styled": "^10.0.27", | ||
"@material-ui/core": "^4.9.11", | ||
"@material-ui/icons": "^4.9.1", | ||
"@reach/router": "^1.3.3", | ||
"bootstrap": "^4.4.1", | ||
"jquery": "^3.5.0", | ||
"moment": "^2.24.0", | ||
"moment-timezone": "^0.5.28", | ||
"popper.js": "^1.16.1", | ||
"react": "^16.13.1", | ||
"react-bootstrap": "^1.0.1", | ||
"react-dom": "^16.13.1", | ||
"react-hook-form": "^5.6.0", | ||
"react-moment": "^0.9.7", | ||
"react-number-format": "^4.4.1", | ||
"react-promise-tracker": "^2.1.0" | ||
}, | ||
"scripts": { | ||
"start": "parcel public/index.html", | ||
"build": "parcel build public/index.html", | ||
"build": "parcel build public/index.html --experimental-scope-hoisting", | ||
"test": "jest", | ||
"test:coverage": "jest --coverage", | ||
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet", | ||
... | ... | @@ -21,9 +35,9 @@ |
}, | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
"last 3 chrome version", | ||
"last 3 firefox version", | ||
"last 3 safari version" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
... | ... | @@ -32,24 +46,40 @@ |
] | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.8.4", | ||
"@babel/preset-env": "^7.8.4", | ||
"@babel/preset-react": "^7.8.3", | ||
"@testing-library/react": "^9.4.0", | ||
"@types/jest": "^25.1.2", | ||
"babel-eslint": "^10.0.3", | ||
"@babel/core": "^7.9.0", | ||
"@babel/preset-env": "^7.9.5", | ||
"@babel/preset-react": "^7.9.4", | ||
"@testing-library/dom": "^7.2.2", | ||
"@testing-library/react": "^10.0.3", | ||
"@types/jest": "^25.2.1", | ||
"babel-eslint": "^10.1.0", | ||
"babel-plugin-emotion": "^10.0.33", | ||
"babel-plugin-transform-inline-environment-variables": "^0.4.3", | ||
"enzyme": "^3.11.0", | ||
"enzyme-adapter-react-16": "^1.15.2", | ||
"eslint": "^6.8.0", | ||
"eslint-config-prettier": "^6.10.0", | ||
"eslint-plugin-import": "^2.20.1", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-emotion": "^10.0.27", | ||
"eslint-plugin-import": "^2.20.2", | ||
"eslint-plugin-jsx-a11y": "^6.2.3", | ||
"eslint-plugin-react": "^7.18.3", | ||
"eslint-plugin-react-hooks": "^2.3.0", | ||
"jest": "^25.1.0", | ||
"eslint-plugin-react": "^7.19.0", | ||
"eslint-plugin-react-hooks": "^2.5.1", | ||
"jest": "^25.4.0", | ||
"jest-environment-enzyme": "^7.1.2", | ||
"jest-enzyme": "^7.1.2", | ||
"jest-fetch-mock": "^3.0.3", | ||
"jest-sonar-reporter": "^2.0.0", | ||
"mutationobserver-shim": "^0.3.5", | ||
"parcel-bundler": "^1.12.4", | ||
"prettier": "^1.19.1" | ||
"prettier": "^2.0.5", | ||
"regenerator-runtime": "^0.13.5" | ||
}, | ||
"jest": { | ||
"setupFilesAfterEnv": [ | ||
"jest-enzyme", | ||
"<rootDir>/src/__test__/setup-jest.js" | ||
], | ||
"testEnvironment": "enzyme", | ||
"moduleNameMapper": { | ||
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js", | ||
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js" | ||
... | ... |
public/manifest.json
deleted
100644 → 0
public/robots.txt
deleted
100644 → 0
src/App.css
deleted
100644 → 0
src/App.test.js
deleted
100644 → 0
src/ApplicationState.jsx
0 → 100644
src/__test__/App.test.js
0 → 100644