mirror of
https://github.com/etkecc/synapse-admin.git
synced 2026-06-01 18:57:37 +02:00
bab94407a7
REUSE Compliance Check / reuse-compliance-check (push) Has been cancelled
CI / Build (push) Has been cancelled
CI / Docker (push) Has been cancelled
CI / Docker (subpath /admin) (push) Has been cancelled
CI / CDN (push) Has been cancelled
CI / Github Release (push) Has been cancelled
124 lines
3.2 KiB
JSON
124 lines
3.2 KiB
JSON
{
|
|
"name": "ketesa",
|
|
"version": "1.0.0",
|
|
"description": "Admin UI for Matrix servers, formerly Synapse Admin",
|
|
"keywords": [
|
|
"matrix",
|
|
"synapse",
|
|
"admin",
|
|
"homeserver",
|
|
"management",
|
|
"react",
|
|
"nodejs",
|
|
"dashboard",
|
|
"etkecc",
|
|
"docker"
|
|
],
|
|
"type": "module",
|
|
"author": "etke.cc",
|
|
"license": "Apache-2.0",
|
|
"homepage": "https://github.com/etkecc/ketesa#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/etkecc/ketesa.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/etkecc/ketesa/issues"
|
|
},
|
|
"funding": [
|
|
"https://github.com/sponsors/etkecc",
|
|
"https://liberapay.com/etkecc"
|
|
],
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@testing-library/dom": "^10.4.1",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/lodash": "^4.17.24",
|
|
"@types/node": "^25.9.1",
|
|
"@types/papaparse": "^5.5.2",
|
|
"@types/react": "^19.2.15",
|
|
"@typescript-eslint/eslint-plugin": "^8.60.0",
|
|
"@typescript-eslint/parser": "^8.60.0",
|
|
"@vitejs/plugin-react": "^6.0.2",
|
|
"@vitest/coverage-v8": "^4.1.7",
|
|
"eslint": "^10.4.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
"eslint-plugin-prettier": "^5.5.6",
|
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
"globals": "^17.6.0",
|
|
"jsdom": "^29.1.1",
|
|
"prettier": "^3.8.3",
|
|
"react-test-renderer": "^19.2.6",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.60.0",
|
|
"vite": "^8.0.9",
|
|
"vitest": "^4.1.5",
|
|
"vitest-axe": "^0.1.0"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.1",
|
|
"@mui/icons-material": "^7.3.9",
|
|
"@mui/material": "^7.3.9",
|
|
"@mui/utils": "^7.3.9",
|
|
"@tanstack/react-query": "^5.100.14",
|
|
"@tiptap/extension-placeholder": "^3.23.6",
|
|
"@tiptap/react": "^3.23.6",
|
|
"@tiptap/starter-kit": "^3.23.6",
|
|
"dompurify": "^3.4.7",
|
|
"lodash": "^4.18.1",
|
|
"oidc-client-ts": "^3.5.0",
|
|
"papaparse": "^5.5.3",
|
|
"ra-core": "^5.14.7",
|
|
"ra-i18n-polyglot": "^5.14.7",
|
|
"ra-language-english": "^5.14.7",
|
|
"ra-language-french": "^5.14.7",
|
|
"react": "^19.2.6",
|
|
"react-admin": "^5.14.7",
|
|
"react-dom": "^19.2.6",
|
|
"react-hook-form": "^7.76.1",
|
|
"react-is": "^19.2.6",
|
|
"react-router": "^7.16.0",
|
|
"react-router-dom": "^7.16.0"
|
|
},
|
|
"scripts": {
|
|
"start": "vite serve",
|
|
"build": "vite build",
|
|
"lint": "eslint .",
|
|
"format": "prettier --write \"src/**/*\"",
|
|
"typecheck": "tsc --noEmit",
|
|
"fix": "yarn lint --fix",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"update-api-docs": "ts-node docs/update-api-docs.ts"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 120,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"semi": true,
|
|
"singleQuote": false,
|
|
"trailingComma": "es5",
|
|
"bracketSpacing": true,
|
|
"arrowParens": "avoid"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|