2020-01-27 13:57:27 +00:00
|
|
|
{
|
|
|
|
"name": "synapse-admin",
|
2024-04-22 08:17:05 +00:00
|
|
|
"version": "0.9.4",
|
2020-01-27 13:57:27 +00:00
|
|
|
"description": "Admin GUI for the Matrix.org server Synapse",
|
2024-04-16 15:22:40 +00:00
|
|
|
"type": "module",
|
2020-01-27 13:57:27 +00:00
|
|
|
"author": "Awesome Technologies Innovationslabor GmbH",
|
|
|
|
"license": "Apache-2.0",
|
2020-05-04 16:04:31 +00:00
|
|
|
"homepage": ".",
|
2020-01-27 13:57:27 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Awesome-Technologies/synapse-admin"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-04-18 15:48:53 +00:00
|
|
|
"@babel/preset-env": "^7.24.4",
|
|
|
|
"@babel/preset-react": "^7.24.1",
|
2024-02-05 15:20:08 +00:00
|
|
|
"@testing-library/jest-dom": "^6.0.0",
|
2024-04-16 07:22:43 +00:00
|
|
|
"@testing-library/react": "^15.0.2",
|
2024-02-05 15:28:54 +00:00
|
|
|
"@testing-library/user-event": "^14.5.2",
|
2024-04-18 15:48:53 +00:00
|
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
|
|
"babel-jest": "^29.7.0",
|
2024-04-04 10:22:09 +00:00
|
|
|
"eslint": "^8.57.0",
|
2024-02-05 15:28:54 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2022-09-07 07:20:25 +00:00
|
|
|
"eslint-config-react-app": "^7.0.1",
|
2024-02-05 15:28:54 +00:00
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2024-04-18 15:48:53 +00:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2020-07-29 15:49:00 +00:00
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2024-04-18 15:48:53 +00:00
|
|
|
"prettier": "^3.2.5",
|
|
|
|
"react-test-renderer": "^18.2.0",
|
2024-04-18 18:25:14 +00:00
|
|
|
"vite": "^5.0.0",
|
|
|
|
"vite-plugin-version-mark": "^0.0.13"
|
2020-01-27 13:57:27 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-04-22 11:43:46 +00:00
|
|
|
"@haleos/ra-language-german": "^1.0.0",
|
|
|
|
"@haxqer/ra-language-chinese": "^4.16.2",
|
2024-04-04 10:28:59 +00:00
|
|
|
"@mui/icons-material": "^5.15.15",
|
2024-04-16 07:21:33 +00:00
|
|
|
"@mui/material": "^5.15.15",
|
2024-04-04 10:28:49 +00:00
|
|
|
"@mui/styles": "^5.15.15",
|
2023-09-12 13:00:40 +00:00
|
|
|
"papaparse": "^5.4.1",
|
2024-04-18 15:48:53 +00:00
|
|
|
"ra-language-farsi": "^4.2.0",
|
2024-04-16 07:27:50 +00:00
|
|
|
"ra-language-french": "^4.16.15",
|
2023-08-31 12:50:44 +00:00
|
|
|
"ra-language-italian": "^3.13.1",
|
2024-02-05 15:20:08 +00:00
|
|
|
"react": "^18.0.0",
|
2024-04-16 07:22:03 +00:00
|
|
|
"react-admin": "^4.16.15",
|
2024-04-18 15:48:53 +00:00
|
|
|
"react-dom": "^18.0.0"
|
2020-01-27 13:57:27 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2024-04-18 18:25:14 +00:00
|
|
|
"start": "vite serve",
|
|
|
|
"build": "vite build",
|
2020-02-11 09:51:16 +00:00
|
|
|
"fix:other": "yarn prettier --write",
|
|
|
|
"fix:code": "yarn test:lint --fix",
|
|
|
|
"fix": "yarn fix:code && yarn fix:other",
|
2021-08-24 13:07:11 +00:00
|
|
|
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,jsx,json,md,scss,yaml,yml}\"",
|
2024-04-18 15:48:53 +00:00
|
|
|
"test:code": "jest",
|
2020-02-11 09:51:16 +00:00
|
|
|
"test:lint": "eslint --ignore-path .gitignore --ext .js,.jsx .",
|
|
|
|
"test:style": "yarn prettier --list-different",
|
2024-04-18 15:48:53 +00:00
|
|
|
"test": "yarn test:style && yarn test:lint && yarn test:code"
|
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"presets": [
|
|
|
|
"@babel/preset-env",
|
|
|
|
[
|
|
|
|
"@babel/preset-react",
|
|
|
|
{
|
|
|
|
"runtime": "automatic"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
2020-01-27 13:57:27 +00:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "react-app"
|
|
|
|
},
|
2024-04-18 15:48:53 +00:00
|
|
|
"jest": {
|
|
|
|
"testEnvironment": "jsdom",
|
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"<rootDir>/src/setupTests.js"
|
|
|
|
]
|
|
|
|
},
|
2020-01-27 13:57:27 +00:00
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|