gitextract_8lrq12pm/ ├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── admin/ │ └── src/ │ ├── components/ │ │ ├── Initializer/ │ │ │ └── index.js │ │ └── PluginIcon/ │ │ └── index.js │ ├── containers/ │ │ ├── App/ │ │ │ └── index.js │ │ ├── HomePage/ │ │ │ └── index.js │ │ └── Initializer/ │ │ └── index.js │ ├── index.js │ ├── pages/ │ │ ├── App/ │ │ │ └── index.js │ │ └── HomePage/ │ │ ├── index.js │ │ └── main.css │ ├── pluginId.js │ ├── translations/ │ │ ├── en.json │ │ └── fr.json │ └── utils/ │ ├── dagreLayout.js │ ├── erChart.js │ ├── getTrad.js │ ├── requests.js │ ├── storm-react-diagrams.js │ └── trChart.js ├── package.json ├── server/ │ ├── config/ │ │ └── index.js │ ├── controllers/ │ │ ├── entity-relationship-chart.js │ │ └── index.js │ ├── index.js │ └── routes/ │ ├── index.js │ └── routes.json ├── strapi-admin.js └── strapi-server.js