1{
2 "name": "synapse-admin",
3 "version": "0.8.5",
4 "description": "Admin GUI for the Matrix.org server Synapse",
5 "author": "Awesome Technologies Innovationslabor GmbH",
6 "license": "Apache-2.0",
7 "homepage": ".",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/Awesome-Technologies/synapse-admin"
11 },
12 "devDependencies": {
13 "@testing-library/jest-dom": "^5.16.5",
14 "@testing-library/react": "^11.2.6",
15 "@testing-library/user-event": "^14.4.3",
16 "eslint": "^8.32.0",
17 "eslint-config-prettier": "^8.3.0",
18 "eslint-config-react-app": "^7.0.1",
19 "eslint-plugin-prettier": "^4.2.1",
20 "jest-fetch-mock": "^3.0.3",
21 "prettier": "^2.2.0",
22 "ra-test": "^3.15.0"
23 },
24 "dependencies": {
25 "@emotion/react": "^11.7.1",
26 "@emotion/styled": "^11.6.0",
27 "@mui/icons-material": "^5.3.1",
28 "@mui/material": "^5.4.0",
29 "papaparse": "^5.2.0",
30 "prop-types": "^15.7.2",
31 "ra-language-chinese": "^2.0.10",
32 "ra-language-french": "^4.2.0",
33 "ra-language-german": "^3.13.4",
34 "react": "^17.0.0",
35 "react-admin": "^3.19.7",
36 "react-dom": "^17.0.2",
37 "react-scripts": "^5.0.1"
38 },
39 "scripts": {
40 "start": "REACT_APP_VERSION=$(git describe --tags) react-scripts start",
41 "build": "REACT_APP_VERSION=$(git describe --tags) react-scripts build",
42 "fix:other": "yarn prettier --write",
43 "fix:code": "yarn test:lint --fix",
44 "fix": "yarn fix:code && yarn fix:other",
45 "prettier": "prettier --ignore-path .gitignore \"**/*.{js,jsx,json,md,scss,yaml,yml}\"",
46 "test:code": "react-scripts test",
47 "test:lint": "eslint --ignore-path .gitignore --ext .js,.jsx .",
48 "test:style": "yarn prettier --list-different",
49 "test": "yarn test:style && yarn test:lint && yarn test:code",
50 "eject": "react-scripts eject"
51 },
52 "eslintConfig": {
53 "extends": "react-app"
54 },
55 "browserslist": {
56 "production": [
57 ">0.2%",
58 "not dead",
59 "not op_mini all"
60 ],
61 "development": [
62 "last 1 chrome version",
63 "last 1 firefox version",
64 "last 1 safari version"
65 ]
66 }
67}