2020-01-27 16:57:27 +03:00
|
|
|
{
|
|
|
|
"name": "synapse-admin",
|
2024-02-05 17:59:40 +03:00
|
|
|
"version": "0.9.0",
|
2020-01-27 16:57:27 +03:00
|
|
|
"description": "Admin GUI for the Matrix.org server Synapse",
|
|
|
|
"author": "Awesome Technologies Innovationslabor GmbH",
|
|
|
|
"license": "Apache-2.0",
|
2020-05-04 19:04:31 +03:00
|
|
|
"homepage": ".",
|
2020-01-27 16:57:27 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Awesome-Technologies/synapse-admin"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-24 11:53:32 +03:00
|
|
|
"@testing-library/jest-dom": "^5.16.5",
|
2023-08-31 10:23:51 +03:00
|
|
|
"@testing-library/react": "^12.1.5",
|
2023-01-16 22:13:59 +03:00
|
|
|
"@testing-library/user-event": "^14.4.3",
|
2024-02-02 17:02:28 +03:00
|
|
|
"eslint": "^8.55.0",
|
2023-09-12 14:27:26 +03:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2022-09-07 10:20:25 +03:00
|
|
|
"eslint-config-react-app": "^7.0.1",
|
2023-01-16 22:13:41 +03:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2020-07-29 18:49:00 +03:00
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2023-02-04 18:57:37 +03:00
|
|
|
"prettier": "^2.2.0"
|
2020-01-27 16:57:27 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-02-02 17:02:41 +03:00
|
|
|
"@mui/icons-material": "^5.14.19",
|
2023-09-12 14:40:40 +03:00
|
|
|
"@mui/material": "^5.14.8",
|
2024-02-02 18:37:39 +03:00
|
|
|
"@mui/styles": "5.14.10",
|
2023-09-12 16:00:40 +03:00
|
|
|
"papaparse": "^5.4.1",
|
2023-09-12 14:41:00 +03:00
|
|
|
"prop-types": "^15.8.1",
|
2021-05-04 14:58:13 +03:00
|
|
|
"ra-language-chinese": "^2.0.10",
|
2024-02-02 17:02:53 +03:00
|
|
|
"ra-language-french": "^4.16.2",
|
2021-05-04 19:36:00 +03:00
|
|
|
"ra-language-german": "^3.13.4",
|
2023-08-31 15:50:44 +03:00
|
|
|
"ra-language-italian": "^3.13.1",
|
2021-04-21 10:44:49 +03:00
|
|
|
"react": "^17.0.0",
|
2023-02-04 18:57:37 +03:00
|
|
|
"react-admin": "^4.16.9",
|
2021-05-04 19:36:00 +03:00
|
|
|
"react-dom": "^17.0.2",
|
2022-09-07 10:20:25 +03:00
|
|
|
"react-scripts": "^5.0.1"
|
2020-01-27 16:57:27 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-05-14 12:17:00 +03:00
|
|
|
"start": "REACT_APP_VERSION=$(git describe --tags) react-scripts start",
|
|
|
|
"build": "REACT_APP_VERSION=$(git describe --tags) react-scripts build",
|
2020-02-11 12:51:16 +03:00
|
|
|
"fix:other": "yarn prettier --write",
|
|
|
|
"fix:code": "yarn test:lint --fix",
|
|
|
|
"fix": "yarn fix:code && yarn fix:other",
|
2021-08-24 16:07:11 +03:00
|
|
|
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,jsx,json,md,scss,yaml,yml}\"",
|
2020-02-11 12:51:16 +03: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 16:57:27 +03: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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|