Index: frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/CHANGELOG.md
===================================================================
--- frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/CHANGELOG.md	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/CHANGELOG.md	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,36 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+## [5.0.1](https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-remove-jsx-empty-expression/compare/v5.0.0...v5.0.1) (2019-12-29)
+
+
+### Bug Fixes
+
+* fix engines in package.json ([a45d6fc](https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-remove-jsx-empty-expression/commit/a45d6fc8b43402bec60ed4e9273f90fdc65a23a7))
+
+
+
+
+
+# [4.2.0](https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-remove-jsx-empty-expression/compare/v4.1.0...v4.2.0) (2019-04-11)
+
+**Note:** Version bump only for package @svgr/babel-plugin-remove-jsx-empty-expression
+
+
+
+
+
+# [4.0.0](https://github.com/gregberge/svgr/compare/v3.1.0...v4.0.0) (2018-11-04)
+
+
+### Features
+
+* **v4:** new architecture ([ac8b8ca](https://github.com/gregberge/svgr/commit/ac8b8ca))
+
+
+### BREAKING CHANGES
+
+* **v4:** - `template` option must now returns a Babel AST
+- `@svgr/core` does not include svgo & prettier by default
Index: frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/LICENSE
===================================================================
--- frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/LICENSE	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/LICENSE	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,7 @@
+Copyright 2017 Smooth Code
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Index: frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/README.md
===================================================================
--- frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/README.md	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/README.md	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,21 @@
+# @svgr/babel-plugin-remove-jsx-empty-expression
+
+## Install
+
+```
+npm install --save-dev @svgr/babel-plugin-remove-jsx-empty-expression
+```
+
+## Usage
+
+**.babelrc**
+
+```json
+{
+  "plugins": ["@svgr/babel-plugin-remove-jsx-empty-expression"]
+}
+```
+
+## License
+
+MIT
Index: frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/lib/index.js
===================================================================
--- frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/lib/index.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/lib/index.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,17 @@
+"use strict";
+
+exports.__esModule = true;
+exports.default = void 0;
+
+const removeJSXEmptyExpression = () => ({
+  visitor: {
+    JSXExpressionContainer(path) {
+      if (!path.get('expression').isJSXEmptyExpression()) return;
+      path.remove();
+    }
+
+  }
+});
+
+var _default = removeJSXEmptyExpression;
+exports.default = _default;
Index: frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/package.json
===================================================================
--- frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/package.json	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression/package.json	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,29 @@
+{
+  "name": "@svgr/babel-plugin-remove-jsx-empty-expression",
+  "description": "Remove JSX empty expression",
+  "version": "5.0.1",
+  "main": "lib/index.js",
+  "repository": "https://github.com/gregberge/svgr/tree/master/packages/babel-plugin-remove-jsx-empty-expression",
+  "author": "Greg Bergé <berge.greg@gmail.com>",
+  "publishConfig": {
+    "access": "public"
+  },
+  "keywords": [
+    "babel-plugin"
+  ],
+  "engines": {
+    "node": ">=10"
+  },
+  "homepage": "https://react-svgr.com",
+  "funding": {
+    "type": "github",
+    "url": "https://github.com/sponsors/gregberge"
+  },
+  "license": "MIT",
+  "scripts": {
+    "prebuild": "rm -rf lib/",
+    "build": "babel --config-file ../../babel.config.js -d lib --ignore \"**/*.test.js\" src",
+    "prepublishOnly": "yarn run build"
+  },
+  "gitHead": "2c0863b6821ef6b86bd7ad1a0267ba7e07b163ff"
+}
