Compare changes
Some changes are not shown.
For a faster browsing experience, only 72 of 87 files are shown. Download one of the files below to see all changes.
+4
−3
.env.development
0 → 100644
+1
−0
+8
−8
+1
−1
+7
−6
+12
−12
compose.yaml
0 → 100644
+6
−0
eslint.config.mjs
0 → 100644
+67
−0
+19980
−12812
File changed.
Preview size limit exceeded, changes collapsed.
+51
−92
Original line number | Diff line number | Diff line |
---|---|---|
@@ -3,23 +3,35 @@ | ||
"version": "0.1.0",
|
||
"private": true,
|
||
"dependencies": {
|
||
"@react-keycloak/web": "^2.1.4",
|
||
"@sentry/react": "^5.23.0",
|
||
"classnames": "^2.2.6",
|
||
"date-fns": "^2.16.1",
|
||
"immer": "^7.0.15",
|
||
"keycloak-js": "^10.0.2",
|
||
"lodash": "^4.17.20",
|
||
"pullstate": "^1.20.5",
|
||
"react": "^16.13.1",
|
||
"react-device-detect": "^1.13.1",
|
||
"react-dom": "^16.13.1",
|
||
"react-intersection-observer": "^8.31.0",
|
||
"react-modal": "^3.12.1",
|
||
"react-router-dom": "^5.2.0",
|
||
"react-scripts": "3.4.3",
|
||
"unfetch": "^4.2.0",
|
||
"wait-queue": "^1.1.4"
|
||
"@react-keycloak/web": "^3.4.0",
|
||
"@rooks/use-interval": "^4.11.2",
|
||
"@rooks/use-outside-click": "^4.11.2",
|
||
"@rooks/use-timeout": "^4.11.2",
|
||
"@rooks/use-window-size": "^4.11.2",
|
||
"@sentry/integrations": "^7.119.2",
|
||
"@sentry/react": "^8.34.0",
|
||
"@sentry/tracing": "^7.119.2",
|
||
"ajv": "^8.17.1",
|
||
"classnames": "^2.5.1",
|
||
"crypto-js": "^4.2.0",
|
||
"date-fns": "^4.1.0",
|
||
"keycloak-js": "^26.0.0",
|
||
"lodash": "^4.17.21",
|
||
"pullstate": "^1.25.0",
|
||
"react": "^18.3.1",
|
||
"react-dom": "^18.3.1",
|
||
"react-helmet-async": "^2.0.5",
|
||
"react-hint": "^3.2.1",
|
||
"react-intersection-observer": "^9.13.1",
|
||
"react-joyride": "^2.9.2",
|
||
"react-mde": "^11.5.0",
|
||
"react-modal": "^3.16.1",
|
||
"react-player": "^2.16.0",
|
||
"react-router-dom": "^6.27.0",
|
||
"react-scripts": "^5.0.1",
|
||
"showdown": "^2.1.0",
|
||
"wait-queue": "^1.1.4",
|
||
"xss": "^1.0.15"
|
||
},
|
||
"scripts": {
|
||
"start": "react-scripts start",
|
||
@@ -27,66 +39,8 @@ | ||
"test": "react-scripts test --env=jsdom-fourteen",
|
||
"eject": "react-scripts eject",
|
||
"lint": "eslint --cache 'src/**/*.{js,jsx}'",
|
||
"lint:fix": "eslint --cache --fix 'src/**/*.{js,jsx}'"
|
||
},
|
||
"eslintConfig": {
|
||
"extends": [
|
||
"react-app",
|
||
"plugin:prettier/recommended",
|
||
"plugin:testing-library/recommended",
|
||
"plugin:jest-dom/recommended"
|
||
],
|
||
"plugins": [
|
||
"simple-import-sort",
|
||
"testing-library",
|
||
"jest-dom"
|
||
],
|
||
"rules": {
|
||
"sort-imports": "off",
|
||
"prettier/prettier": "warn",
|
||
"react/no-unknown-property": [
|
||
1
|
||
],
|
||
"simple-import-sort/sort": [
|
||
"warn",
|
||
{
|
||
"groups": [
|
||
[
|
||
"^react",
|
||
"^@?\\w"
|
||
],
|
||
[
|
||
"^(api|actions|config|hooks|components|containers|pages|utils|stores|keycloak|ws)(/.*|$)"
|
||
],
|
||
[
|
||
"^(test-utils)(/.*|$)"
|
||
],
|
||
[
|
||
"^\\u0000"
|
||
],
|
||
[
|
||
"^\\.\\.(?!/?$)",
|
||