2020-01-27 13:57:27 +00:00
|
|
|
{
|
|
|
|
"name": "synapse-admin",
|
2024-02-08 14:05:26 +00:00
|
|
|
"version": "0.9.1",
|
2020-01-27 13:57:27 +00:00
|
|
|
"description": "Admin GUI for the Matrix.org server Synapse",
|
|
|
|
"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-02-05 15:20:08 +00:00
|
|
|
"@testing-library/jest-dom": "^6.0.0",
|
|
|
|
"@testing-library/react": "^14.0.0",
|
2024-02-05 15:28:54 +00:00
|
|
|
"@testing-library/user-event": "^14.5.2",
|
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",
|
2020-07-29 15:49:00 +00:00
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2024-02-05 15:28:54 +00:00
|
|
|
"prettier": "^3.2.5"
|
2020-01-27 13:57:27 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
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",
|
2021-05-04 11:58:13 +00:00
|
|
|
"ra-language-chinese": "^2.0.10",
|
2024-04-04 10:22:19 +00:00
|
|
|
"ra-language-french": "^4.16.12",
|
2021-05-04 16:36:00 +00:00
|
|
|
"ra-language-german": "^3.13.4",
|
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-02-19 11:35:27 +00:00
|
|
|
"react-admin": "^4.16.11",
|
2024-02-05 15:20:08 +00:00
|
|
|
"react-dom": "^18.0.0",
|
2022-09-07 07:20:25 +00:00
|
|
|
"react-scripts": "^5.0.1"
|
2020-01-27 13:57:27 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-05-14 09:17:00 +00:00
|
|
|
"start": "REACT_APP_VERSION=$(git describe --tags) react-scripts start",
|
|
|
|
"build": "REACT_APP_VERSION=$(git describe --tags) react-scripts 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}\"",
|
2020-02-11 09:51:16 +00:00
|
|
|
"test:code": "react-scripts test",
|
|
|
|
"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",
|
2020-01-27 13:57:27 +00:00
|
|
|
"eject": "react-scripts eject"
|
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "react-app"
|
|
|
|
},
|
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|