mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-12 17:54:40 +00:00
77be88402f
Change-Id: Ie131ec9d5b86c167d561a375aa0dee59c1799531
92 lines
2.5 KiB
JSON
92 lines
2.5 KiB
JSON
{
|
|
"name": "synapse-admin",
|
|
"version": "0.9.4",
|
|
"description": "Admin GUI for the Matrix.org server Synapse",
|
|
"type": "module",
|
|
"author": "Awesome Technologies Innovationslabor GmbH",
|
|
"license": "Apache-2.0",
|
|
"homepage": ".",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Awesome-Technologies/synapse-admin"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.24.4",
|
|
"@babel/preset-react": "^7.24.1",
|
|
"@testing-library/jest-dom": "^6.0.0",
|
|
"@testing-library/react": "^15.0.2",
|
|
"@testing-library/user-event": "^14.5.2",
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"babel-jest": "^29.7.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-config-react-app": "^7.0.1",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"jest-fetch-mock": "^3.0.3",
|
|
"prettier": "^3.2.5",
|
|
"react-test-renderer": "^18.2.0",
|
|
"vite": "^5.0.0",
|
|
"vite-plugin-version-mark": "^0.0.13"
|
|
},
|
|
"dependencies": {
|
|
"@haleos/ra-language-german": "^1.0.0",
|
|
"@haxqer/ra-language-chinese": "^4.16.2",
|
|
"@mui/icons-material": "^5.15.15",
|
|
"@mui/material": "^5.15.15",
|
|
"@mui/styles": "^5.15.15",
|
|
"papaparse": "^5.4.1",
|
|
"ra-language-farsi": "^4.2.0",
|
|
"ra-language-french": "^4.16.15",
|
|
"ra-language-italian": "^3.13.1",
|
|
"react": "^18.0.0",
|
|
"react-admin": "^4.16.15",
|
|
"react-dom": "^18.0.0"
|
|
},
|
|
"scripts": {
|
|
"start": "vite serve",
|
|
"build": "vite build",
|
|
"fix:other": "yarn prettier --write",
|
|
"fix:code": "yarn test:lint --fix",
|
|
"fix": "yarn fix:code && yarn fix:other",
|
|
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,jsx,json,md,scss,yaml,yml}\"",
|
|
"test:code": "jest",
|
|
"test:lint": "eslint --ignore-path .gitignore --ext .js,.jsx .",
|
|
"test:style": "yarn prettier --list-different",
|
|
"test": "yarn test:style && yarn test:lint && yarn test:code"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"@babel/preset-env",
|
|
[
|
|
"@babel/preset-react",
|
|
{
|
|
"runtime": "automatic"
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "jsdom",
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/src/setupTests.js"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|