mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-08 15:54:51 +00:00
0c5c762224
* Added italian language * Bump @testing-library/react from 11.2.7 to 12.1.5 (#327) Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 11.2.7 to 12.1.5. - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/react-testing-library/compare/v11.2.7...v12.1.5) --- updated-dependencies: - dependency-name: "@testing-library/react" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump docker/build-push-action from 3 to 4 (#328) Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v3...v4) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Added italian language * Fix * Updated yarn.lock --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
69 lines
2.1 KiB
JSON
69 lines
2.1 KiB
JSON
{
|
|
"name": "synapse-admin",
|
|
"version": "0.8.5",
|
|
"description": "Admin GUI for the Matrix.org server Synapse",
|
|
"author": "Awesome Technologies Innovationslabor GmbH",
|
|
"license": "Apache-2.0",
|
|
"homepage": ".",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Awesome-Technologies/synapse-admin"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/react": "^12.1.5",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"eslint": "^8.32.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-config-react-app": "^7.0.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest-fetch-mock": "^3.0.3",
|
|
"prettier": "^2.2.0",
|
|
"ra-test": "^3.15.0"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.7.1",
|
|
"@emotion/styled": "^11.10.6",
|
|
"@mui/icons-material": "^5.3.1",
|
|
"@mui/material": "^5.4.0",
|
|
"papaparse": "^5.2.0",
|
|
"prop-types": "^15.7.2",
|
|
"ra-language-chinese": "^2.0.10",
|
|
"ra-language-french": "^4.9.3",
|
|
"ra-language-german": "^3.13.4",
|
|
"ra-language-italian": "^3.13.1",
|
|
"react": "^17.0.0",
|
|
"react-admin": "^3.19.12",
|
|
"react-dom": "^17.0.2",
|
|
"react-scripts": "^5.0.1"
|
|
},
|
|
"scripts": {
|
|
"start": "REACT_APP_VERSION=$(git describe --tags) react-scripts start",
|
|
"build": "REACT_APP_VERSION=$(git describe --tags) react-scripts 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": "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",
|
|
"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"
|
|
]
|
|
}
|
|
}
|