mirror of
https://dev.azure.com/tstanciu94/ReverseProxy/_git/ReverseProxy_Frontend
synced 2025-10-03 16:49:04 +03:00
- feat: Add session management components and improve system overview - feat: Update dependencies and replace react-flags with react-country-flag - Update dependencies in package.json: reintroduce react-dom and upgrade redux to version 5.0.1 - refactor: update chatbot implementation and dependencies - refactor: migrate to Redux Toolkit and update dependencies - feat: enhance ReactCountryFlag component with SVG support - refactor: remove Bootstrap dependency and update Node engine requirement; add LabelValue component for better UI consistency - refactor: enhance LabelValue component usage in ServerSummary for improved readability and tooltip support - refactor: replace inline text with LabelValue component in ActiveSessionSummary and SessionSummary for improved consistency and readability - refactor: update components to use LabelValue for improved consistency and readability - refactor: optimize LabelValue component for improved readability and structure - refactor: improve code readability in SessionForwardsComponent by standardizing arrow function syntax and adjusting styling properties
103 lines
2.6 KiB
JSON
103 lines
2.6 KiB
JSON
{
|
|
"name": "reverse-proxy-frontend",
|
|
"version": "1.5.0",
|
|
"private": true,
|
|
"description": "Reverse proxy frontend application",
|
|
"author": {
|
|
"name": "Tudor Stanciu",
|
|
"email": "tudor.stanciu94@gmail.com",
|
|
"url": "https://lab.code-rove.com/tsp"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"start": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.1",
|
|
"@flare/lumrop": "^1.3.2",
|
|
"@mui/icons-material": "^7.3.0",
|
|
"@mui/lab": "^7.0.0-beta.15",
|
|
"@mui/material": "^7.3.0",
|
|
"@mui/styles": "^6.5.0",
|
|
"@reduxjs/toolkit": "^2.8.2",
|
|
"axios": "^1.11.0",
|
|
"i18next": "^25.3.2",
|
|
"i18next-browser-languagedetector": "^8.2.0",
|
|
"i18next-http-backend": "^3.0.2",
|
|
"immer": "^10.1.1",
|
|
"moment": "^2.30.1",
|
|
"react": "^19.1.1",
|
|
"react-chatbotify": "^2.3.0",
|
|
"react-country-flag": "^3.1.0",
|
|
"react-dom": "^19.1.1",
|
|
"react-i18next": "^15.6.1",
|
|
"react-redux": "^9.2.0",
|
|
"react-router": "^7.7.1",
|
|
"react-router-dom": "^7.7.1",
|
|
"react-skillbars": "^1.6.1",
|
|
"recharts": "^3.1.1",
|
|
"redux": "^5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.2.0",
|
|
"@types/react": "^19.1.9",
|
|
"@types/react-dom": "^19.1.7",
|
|
"@typescript-eslint/eslint-plugin": "^8.44.1",
|
|
"@typescript-eslint/parser": "^8.44.1",
|
|
"@vitejs/plugin-react": "^4.7.0",
|
|
"eslint": "^8.57.1",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"process": "^0.11.10",
|
|
"typescript": "^5.9.2",
|
|
"vite": "^7.0.6",
|
|
"vite-plugin-checker": "^0.10.3",
|
|
"vite-tsconfig-paths": "^5.1.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"@typescript-eslint/recommended",
|
|
"plugin:import/errors",
|
|
"plugin:import/warnings",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"plugins": ["@typescript-eslint"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2022,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"rules": {
|
|
"no-debugger": "off",
|
|
"no-console": "warn",
|
|
"no-unused-vars": "warn",
|
|
"react/prop-types": "warn"
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
},
|
|
"root": true
|
|
}
|
|
}
|