2015-06-09 18:40:42 +02:00
|
|
|
{
|
|
|
|
"name": "matrix-react-sdk",
|
2021-07-19 17:00:26 +02:00
|
|
|
"version": "3.26.0",
|
2015-06-09 18:40:42 +02:00
|
|
|
"description": "SDK for matrix.org using React",
|
|
|
|
"author": "matrix.org",
|
2015-06-09 19:52:26 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/matrix-org/matrix-react-sdk"
|
|
|
|
},
|
2015-07-03 16:56:04 +02:00
|
|
|
"license": "Apache-2.0",
|
2016-11-01 16:15:31 +01:00
|
|
|
"files": [
|
2019-12-20 02:01:43 +01:00
|
|
|
"lib",
|
|
|
|
"res",
|
|
|
|
"src",
|
|
|
|
"scripts",
|
|
|
|
"git-revision.txt",
|
2020-01-07 23:13:42 +01:00
|
|
|
"docs",
|
2019-12-20 02:01:43 +01:00
|
|
|
"header",
|
2016-11-01 16:15:31 +01:00
|
|
|
"CHANGELOG.md",
|
|
|
|
"CONTRIBUTING.rst",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
2019-12-20 02:01:43 +01:00
|
|
|
"package.json"
|
2016-11-01 16:15:31 +01:00
|
|
|
],
|
2015-09-11 16:42:11 +02:00
|
|
|
"bin": {
|
2021-04-26 17:55:12 +02:00
|
|
|
"reskindex": "scripts/reskindex.js"
|
2015-09-11 16:42:11 +02:00
|
|
|
},
|
2021-07-19 17:16:18 +02:00
|
|
|
"main": "./src/index.js",
|
2019-12-20 03:08:18 +01:00
|
|
|
"matrix_src_main": "./src/index.js",
|
2020-12-18 15:49:28 +01:00
|
|
|
"matrix_lib_main": "./lib/index.js",
|
|
|
|
"matrix_lib_typings": "./lib/index.d.ts",
|
2015-06-09 18:40:42 +02:00
|
|
|
"scripts": {
|
2020-12-17 14:09:35 +01:00
|
|
|
"prepublishOnly": "yarn build",
|
2017-10-19 11:51:54 +02:00
|
|
|
"i18n": "matrix-gen-i18n",
|
2017-10-19 13:11:21 +02:00
|
|
|
"prunei18n": "matrix-prune-i18n",
|
2021-04-27 16:09:26 +02:00
|
|
|
"diff-i18n": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && matrix-gen-i18n && matrix-compare-i18n-files src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json",
|
2019-12-12 22:37:14 +01:00
|
|
|
"reskindex": "node scripts/reskindex.js -h header",
|
|
|
|
"reskindex:watch": "node scripts/reskindex.js -h header -w",
|
|
|
|
"rethemendex": "res/css/rethemendex.sh",
|
2015-09-09 17:57:55 +02:00
|
|
|
"clean": "rimraf lib",
|
2019-12-12 22:37:14 +01:00
|
|
|
"build": "yarn clean && git rev-parse HEAD > git-revision.txt && yarn build:compile && yarn build:types",
|
2020-03-12 00:47:18 +01:00
|
|
|
"build:compile": "yarn reskindex && babel -d lib --verbose --extensions \".ts,.js,.tsx\" src",
|
2020-03-12 01:24:01 +01:00
|
|
|
"build:types": "tsc --emitDeclarationOnly --jsx react",
|
2019-12-12 22:37:14 +01:00
|
|
|
"start": "echo THIS IS FOR LEGACY PURPOSES ONLY. && yarn start:all",
|
|
|
|
"start:all": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n build,reskindex \"yarn start:build\" \"yarn reskindex:watch\"",
|
|
|
|
"start:build": "babel src -w -s -d lib --verbose --extensions \".ts,.js\"",
|
2020-06-23 18:01:40 +02:00
|
|
|
"lint": "yarn lint:types && yarn lint:js && yarn lint:style",
|
2021-07-01 21:43:05 +02:00
|
|
|
"lint:js": "eslint --max-warnings 0 src test",
|
2020-03-12 01:24:01 +01:00
|
|
|
"lint:types": "tsc --noEmit --jsx react",
|
2019-12-12 22:37:14 +01:00
|
|
|
"lint:style": "stylelint 'res/css/**/*.scss'",
|
2019-12-17 13:23:51 +01:00
|
|
|
"test": "jest",
|
2021-04-28 15:17:57 +02:00
|
|
|
"test:e2e": "./test/end-to-end-tests/run.sh --app-url http://localhost:8080",
|
|
|
|
"coverage": "yarn test --coverage"
|
2015-06-09 18:40:42 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-01-20 12:11:22 +01:00
|
|
|
"@babel/runtime": "^7.12.5",
|
|
|
|
"await-lock": "^2.1.0",
|
2020-08-11 06:06:30 +02:00
|
|
|
"blurhash": "^1.1.3",
|
2016-12-01 14:12:22 +01:00
|
|
|
"browser-encrypt-attachment": "^0.3.0",
|
2016-05-16 16:35:39 +02:00
|
|
|
"browser-request": "^0.3.3",
|
2021-05-10 17:09:12 +02:00
|
|
|
"cheerio": "^1.0.0-rc.9",
|
2020-07-23 23:27:10 +02:00
|
|
|
"classnames": "^2.2.6",
|
2021-01-20 12:11:22 +01:00
|
|
|
"commonmark": "^0.29.3",
|
2020-07-23 23:27:10 +02:00
|
|
|
"counterpart": "^0.18.6",
|
2021-01-20 12:11:22 +01:00
|
|
|
"diff-dom": "^4.2.2",
|
2020-07-23 23:27:10 +02:00
|
|
|
"diff-match-patch": "^1.0.5",
|
2021-01-20 12:11:22 +01:00
|
|
|
"emojibase-data": "^5.1.1",
|
|
|
|
"emojibase-regex": "^4.1.1",
|
2019-11-09 00:07:11 +01:00
|
|
|
"escape-html": "^1.0.3",
|
2021-01-20 14:04:41 +01:00
|
|
|
"file-saver": "^2.0.5",
|
|
|
|
"filesize": "6.1.0",
|
2017-06-09 22:42:34 +02:00
|
|
|
"flux": "2.1.1",
|
2021-01-20 12:11:22 +01:00
|
|
|
"focus-visible": "^5.2.0",
|
2020-07-23 23:27:10 +02:00
|
|
|
"gfm.css": "^1.1.2",
|
2019-10-31 20:20:08 +01:00
|
|
|
"glob-to-regexp": "^0.4.1",
|
2021-01-20 12:11:22 +01:00
|
|
|
"highlight.js": "^10.5.0",
|
|
|
|
"html-entities": "^1.4.0",
|
2021-01-20 14:04:41 +01:00
|
|
|
"is-ip": "^3.1.0",
|
2020-09-19 16:30:00 +02:00
|
|
|
"katex": "^0.12.0",
|
2020-07-23 23:27:10 +02:00
|
|
|
"linkifyjs": "^2.1.9",
|
2021-01-20 12:11:22 +01:00
|
|
|
"lodash": "^4.17.20",
|
2021-07-19 16:54:25 +02:00
|
|
|
"matrix-js-sdk": "12.1.0",
|
2021-06-23 19:21:56 +02:00
|
|
|
"matrix-widget-api": "^0.1.0-beta.15",
|
2020-07-23 23:27:10 +02:00
|
|
|
"minimist": "^1.2.5",
|
2021-03-12 06:05:47 +01:00
|
|
|
"opus-recorder": "^8.0.3",
|
2021-01-20 14:04:41 +01:00
|
|
|
"pako": "^2.0.3",
|
|
|
|
"parse5": "^6.0.1",
|
2019-01-14 18:10:20 +01:00
|
|
|
"png-chunks-extract": "^1.0.0",
|
2020-07-23 23:27:10 +02:00
|
|
|
"prop-types": "^15.7.2",
|
2020-02-20 01:02:14 +01:00
|
|
|
"qrcode": "^1.4.4",
|
2021-01-20 12:11:22 +01:00
|
|
|
"re-resizable": "^6.9.0",
|
2021-06-09 12:40:20 +02:00
|
|
|
"react": "^17.0.2",
|
2021-06-03 09:32:36 +02:00
|
|
|
"react-beautiful-dnd": "^13.1.0",
|
2021-07-07 21:00:31 +02:00
|
|
|
"react-blurhash": "^0.1.3",
|
2021-06-09 12:40:20 +02:00
|
|
|
"react-dom": "^17.0.2",
|
2021-01-20 12:11:22 +01:00
|
|
|
"react-focus-lock": "^2.5.0",
|
2020-06-09 23:06:54 +02:00
|
|
|
"react-transition-group": "^4.4.1",
|
2020-07-23 23:27:10 +02:00
|
|
|
"resize-observer-polyfill": "^1.5.1",
|
2020-09-04 09:04:18 +02:00
|
|
|
"rfc4648": "^1.4.0",
|
2021-05-10 15:57:35 +02:00
|
|
|
"sanitize-html": "^2.3.2",
|
2020-01-16 07:22:31 +01:00
|
|
|
"tar-js": "^0.3.0",
|
2017-07-06 10:28:48 +02:00
|
|
|
"url": "^0.11.0",
|
2020-07-23 23:27:10 +02:00
|
|
|
"what-input": "^5.2.10",
|
2018-11-23 16:50:23 +01:00
|
|
|
"zxcvbn": "^4.4.2"
|
2015-06-09 18:40:42 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-01-20 12:11:22 +01:00
|
|
|
"@babel/cli": "^7.12.10",
|
|
|
|
"@babel/core": "^7.12.10",
|
2021-04-01 14:17:09 +02:00
|
|
|
"@babel/eslint-parser": "^7.12.10",
|
|
|
|
"@babel/eslint-plugin": "^7.12.10",
|
2021-01-20 12:11:22 +01:00
|
|
|
"@babel/parser": "^7.12.11",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.12.12",
|
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.12.1",
|
|
|
|
"@babel/plugin-proposal-numeric-separator": "^7.12.7",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.12.10",
|
|
|
|
"@babel/preset-env": "^7.12.11",
|
|
|
|
"@babel/preset-react": "^7.12.10",
|
|
|
|
"@babel/preset-typescript": "^7.12.7",
|
|
|
|
"@babel/register": "^7.12.10",
|
|
|
|
"@babel/traverse": "^7.12.12",
|
2021-05-24 18:15:16 +02:00
|
|
|
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.3.tgz",
|
2021-01-20 12:11:22 +01:00
|
|
|
"@peculiar/webcrypto": "^1.1.4",
|
2021-01-20 14:07:52 +01:00
|
|
|
"@sinonjs/fake-timers": "^7.0.2",
|
2021-01-20 12:11:22 +01:00
|
|
|
"@types/classnames": "^2.2.11",
|
2021-07-07 21:08:52 +02:00
|
|
|
"@types/commonmark": "^0.27.4",
|
2020-07-03 00:15:08 +02:00
|
|
|
"@types/counterpart": "^0.18.1",
|
2021-07-12 21:45:19 +02:00
|
|
|
"@types/css-font-loading-module": "^0.0.6",
|
2021-06-23 09:44:48 +02:00
|
|
|
"@types/diff-match-patch": "^1.0.32",
|
2020-05-14 05:07:29 +02:00
|
|
|
"@types/flux": "^3.1.9",
|
2021-01-12 18:37:24 +01:00
|
|
|
"@types/jest": "^26.0.20",
|
2020-07-08 09:40:58 +02:00
|
|
|
"@types/linkifyjs": "^2.1.3",
|
2021-01-20 12:11:22 +01:00
|
|
|
"@types/lodash": "^4.14.168",
|
2020-04-19 13:06:56 +02:00
|
|
|
"@types/modernizr": "^3.5.3",
|
2021-01-20 14:04:41 +01:00
|
|
|
"@types/node": "^14.14.22",
|
2020-07-21 23:28:36 +02:00
|
|
|
"@types/pako": "^1.0.1",
|
2021-05-07 11:11:56 +02:00
|
|
|
"@types/parse5": "^6.0.0",
|
2021-01-20 12:11:22 +01:00
|
|
|
"@types/qrcode": "^1.3.5",
|
2021-06-22 09:17:09 +02:00
|
|
|
"@types/react": "^17.0.2",
|
2021-06-03 09:32:36 +02:00
|
|
|
"@types/react-beautiful-dnd": "^13.0.0",
|
2021-06-22 09:17:09 +02:00
|
|
|
"@types/react-dom": "^17.0.2",
|
2020-06-09 23:06:54 +02:00
|
|
|
"@types/react-transition-group": "^4.4.0",
|
2021-05-10 18:43:10 +02:00
|
|
|
"@types/sanitize-html": "^2.3.1",
|
2020-05-14 21:19:15 +02:00
|
|
|
"@types/zxcvbn": "^4.4.0",
|
2021-04-01 14:17:09 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.17.0",
|
|
|
|
"@typescript-eslint/parser": "^4.17.0",
|
2021-06-15 17:16:42 +02:00
|
|
|
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
|
2021-01-20 14:04:41 +01:00
|
|
|
"babel-jest": "^26.6.3",
|
2021-01-20 12:11:22 +01:00
|
|
|
"chokidar": "^3.5.1",
|
2021-01-20 14:04:41 +01:00
|
|
|
"concurrently": "^5.3.0",
|
2020-07-23 23:27:10 +02:00
|
|
|
"enzyme": "^3.11.0",
|
2021-01-20 12:11:22 +01:00
|
|
|
"eslint": "7.18.0",
|
2021-04-01 14:17:09 +02:00
|
|
|
"eslint-config-google": "^0.14.0",
|
|
|
|
"eslint-plugin-matrix-org": "github:matrix-org/eslint-plugin-matrix-org#main",
|
2021-01-20 12:11:22 +01:00
|
|
|
"eslint-plugin-react": "^7.22.0",
|
2021-01-20 14:04:41 +01:00
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
|
|
"glob": "^7.1.6",
|
2021-01-20 12:11:22 +01:00
|
|
|
"jest": "^26.6.3",
|
2020-10-07 01:08:40 +02:00
|
|
|
"jest-canvas-mock": "^2.3.0",
|
|
|
|
"jest-environment-jsdom-sixteen": "^1.0.3",
|
2021-03-11 17:42:55 +01:00
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2019-03-27 16:07:14 +01:00
|
|
|
"matrix-mock-request": "^1.2.3",
|
2021-06-15 13:00:44 +02:00
|
|
|
"matrix-react-test-utils": "^0.2.3",
|
2021-04-26 17:55:12 +02:00
|
|
|
"matrix-web-i18n": "github:matrix-org/matrix-web-i18n",
|
2021-06-09 12:40:20 +02:00
|
|
|
"react-test-renderer": "^17.0.2",
|
2021-01-20 14:04:41 +01:00
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"stylelint": "^13.9.0",
|
|
|
|
"stylelint-config-standard": "^20.0.0",
|
2020-07-23 23:27:10 +02:00
|
|
|
"stylelint-scss": "^3.18.0",
|
2021-01-20 14:04:41 +01:00
|
|
|
"typescript": "^4.1.3",
|
2020-08-29 13:09:07 +02:00
|
|
|
"walk": "^2.3.14"
|
2019-12-17 12:24:37 +01:00
|
|
|
},
|
|
|
|
"jest": {
|
2020-10-07 02:22:29 +02:00
|
|
|
"testEnvironment": "./__test-utils__/environment.js",
|
2020-01-10 00:17:27 +01:00
|
|
|
"testMatch": [
|
2021-06-23 14:59:36 +02:00
|
|
|
"<rootDir>/test/**/*-test.[jt]s?(x)"
|
2020-01-10 00:17:27 +01:00
|
|
|
],
|
2020-06-02 14:53:13 +02:00
|
|
|
"setupFiles": [
|
|
|
|
"jest-canvas-mock"
|
|
|
|
],
|
2020-01-18 02:39:14 +01:00
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"<rootDir>/test/setupTests.js"
|
|
|
|
],
|
2019-12-17 12:24:37 +01:00
|
|
|
"moduleNameMapper": {
|
2020-01-10 01:22:21 +01:00
|
|
|
"\\.(gif|png|svg|ttf|woff2)$": "<rootDir>/__mocks__/imageMock.js",
|
2021-05-07 06:08:00 +02:00
|
|
|
"\\$webapp/i18n/languages.json": "<rootDir>/__mocks__/languages.json",
|
|
|
|
"decoderWorker\\.min\\.js": "<rootDir>/__mocks__/empty.js",
|
|
|
|
"decoderWorker\\.min\\.wasm": "<rootDir>/__mocks__/empty.js",
|
2021-07-14 19:50:01 +02:00
|
|
|
"waveWorker\\.min\\.js": "<rootDir>/__mocks__/empty.js",
|
|
|
|
"workers/(.+)\\.worker\\.ts": "<rootDir>/__mocks__/workerMock.js"
|
2020-01-10 01:22:21 +01:00
|
|
|
},
|
|
|
|
"transformIgnorePatterns": [
|
|
|
|
"/node_modules/(?!matrix-js-sdk).+$"
|
2021-04-28 15:17:57 +02:00
|
|
|
],
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"<rootDir>/src/**/*.{js,ts,tsx}"
|
|
|
|
],
|
|
|
|
"coverageReporters": [
|
|
|
|
"text"
|
2020-01-10 01:22:21 +01:00
|
|
|
]
|
2021-07-19 17:16:18 +02:00
|
|
|
}
|
2015-06-09 18:40:42 +02:00
|
|
|
}
|