Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at domenkozar-patch-1 61 lines 1.9 kB view raw
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.1.1", 14 "@testing-library/react": "^11.2.6", 15 "@testing-library/user-event": "^13.1.8", 16 "eslint": "^7.25.0", 17 "eslint-config-prettier": "^8.3.0", 18 "eslint-plugin-prettier": "^3.1.2", 19 "jest-fetch-mock": "^3.0.3", 20 "prettier": "^2.2.0", 21 "ra-test": "^3.15.0" 22 }, 23 "dependencies": { 24 "papaparse": "^5.2.0", 25 "prop-types": "^15.7.2", 26 "ra-language-chinese": "^2.0.10", 27 "ra-language-german": "^3.13.4", 28 "react": "^17.0.0", 29 "react-admin": "^3.19.7", 30 "react-dom": "^17.0.2", 31 "react-scripts": "^4.0.0" 32 }, 33 "scripts": { 34 "start": "REACT_APP_VERSION=$(git describe --tags) react-scripts start", 35 "build": "REACT_APP_VERSION=$(git describe --tags) react-scripts build", 36 "fix:other": "yarn prettier --write", 37 "fix:code": "yarn test:lint --fix", 38 "fix": "yarn fix:code && yarn fix:other", 39 "prettier": "prettier --ignore-path .gitignore \"**/*.{js,jsx,json,md,scss,yaml,yml}\"", 40 "test:code": "react-scripts test", 41 "test:lint": "eslint --ignore-path .gitignore --ext .js,.jsx .", 42 "test:style": "yarn prettier --list-different", 43 "test": "yarn test:style && yarn test:lint && yarn test:code", 44 "eject": "react-scripts eject" 45 }, 46 "eslintConfig": { 47 "extends": "react-app" 48 }, 49 "browserslist": { 50 "production": [ 51 ">0.2%", 52 "not dead", 53 "not op_mini all" 54 ], 55 "development": [ 56 "last 1 chrome version", 57 "last 1 firefox version", 58 "last 1 safari version" 59 ] 60 } 61}