2020-01-27 13:57:27 +00:00
|
|
|
{
|
|
|
|
"name": "synapse-admin",
|
2022-02-17 19:56:27 +00:00
|
|
|
"version": "0.8.5",
|
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": {
|
2023-01-24 08:53:32 +00:00
|
|
|
"@testing-library/jest-dom": "^5.16.5",
|
2023-08-31 07:23:51 +00:00
|
|
|
"@testing-library/react": "^12.1.5",
|
2023-01-16 19:13:59 +00:00
|
|
|
"@testing-library/user-event": "^14.4.3",
|
2023-09-05 06:25:48 +00:00
|
|
|
"eslint": "^8.48.0",
|
2023-09-12 11:27:26 +00:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2022-09-07 07:20:25 +00:00
|
|
|
"eslint-config-react-app": "^7.0.1",
|
2023-01-16 19:13:41 +00:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2020-07-29 15:49:00 +00:00
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2021-05-04 16:36:00 +00:00
|
|
|
"prettier": "^2.2.0",
|
2023-09-05 08:47:25 +00:00
|
|
|
"ra-test": "^3.19.12"
|
2020-01-27 13:57:27 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-09-05 08:47:45 +00:00
|
|
|
"@emotion/react": "^11.11.1",
|
2023-08-30 20:09:42 +00:00
|
|
|
"@emotion/styled": "^11.10.6",
|
2023-09-12 11:26:27 +00:00
|
|
|
"@mui/icons-material": "^5.14.8",
|
2023-09-12 11:40:40 +00:00
|
|
|
"@mui/material": "^5.14.8",
|
2020-11-12 15:14:30 +00:00
|
|
|
"papaparse": "^5.2.0",
|
2020-01-27 13:57:27 +00:00
|
|
|
"prop-types": "^15.7.2",
|
2021-05-04 11:58:13 +00:00
|
|
|
"ra-language-chinese": "^2.0.10",
|
2023-09-05 10:54:58 +00:00
|
|
|
"ra-language-french": "^4.13.3",
|
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",
|
2021-04-21 07:44:49 +00:00
|
|
|
"react": "^17.0.0",
|
2023-08-30 20:09:57 +00:00
|
|
|
"react-admin": "^3.19.12",
|
2021-05-04 16:36:00 +00:00
|
|
|
"react-dom": "^17.0.2",
|
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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|