Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "1.0.7-beta",
"version": "1.0.8-beta",
"private": true,
"scripts": {
"build:local": "env-cmd -f .envs/.react react-scripts build",
Expand Down Expand Up @@ -57,57 +57,57 @@
},
"dependencies": {
"@ant-design/icons": "4.6.2",
"@babel/plugin-syntax-flow": "^7.16.7",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@babel/plugin-syntax-flow": "7.16.7",
"@babel/plugin-transform-react-jsx": "7.17.3",
"@react-keycloak/web": "3.4.0",
"antd": "4.15.1",
"autoprefixer": "^10.4.4",
"axios": "^0.26.1",
"autoprefixer": "10.4.4",
"axios": "0.26.1",
"dotenv": "8.2.0",
"env-cmd": "10.1.0",
"humps": "2.0.1",
"keycloak-js": "17.0.1",
"moment": "2.29.4",
"prop-types": "^15.8.1",
"prop-types": "15.8.1",
"query-string": "7.0.0",
"react": "17.0.2",
"react-async": "10.0.1",
"react-dom": "17.0.2",
"react-hotjar": "2.2.1",
"react-joyride": "^2.4.0",
"react-joyride": "2.4.0",
"react-router-dom": "5.3.3",
"react-scripts": "^5.0.1",
"typescript": "^4.6.3",
"react-scripts": "5.0.1",
"typescript": "4.6.3",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@testing-library/dom": "^8.13.0",
"@babel/core": "7.17.9",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.6",
"@testing-library/user-event": "13.1.2",
"@types/humps": "2.0.0",
"@types/jest": "28.1.6",
"@types/jest": "29.0.3",
"@types/node": "14.14.37",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-router-dom": "5.1.7",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"dayjs": "^1.11.1",
"eslint": "^8.12.0",
"dayjs": "1.11.1",
"eslint": "8.12.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.6.0",
"msw": "0.28.1",
"postcss": "^8.4.12",
"postcss": "8.4.12",
"prettier": "2.2.1",
"setimmediate": "^1.0.5"
"setimmediate": "1.0.5"
}
}
2 changes: 1 addition & 1 deletion frontend/src/components/App/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export type Props = {
searchQuery: ActiveSearchQuery;
};

const metagridVersion = '1.0.7-beta';
const metagridVersion = '1.0.8-beta';

const App: React.FC<Props> = ({ searchQuery }) => {
// Third-party tool integration
Expand Down
Loading