2015-06-09 19:40:42 +03:00
|
|
|
{
|
|
|
|
"name": "matrix-react-sdk",
|
2019-11-06 17:17:09 +03:00
|
|
|
"version": "1.7.2",
|
2015-06-09 19:40:42 +03:00
|
|
|
"description": "SDK for matrix.org using React",
|
|
|
|
"author": "matrix.org",
|
2015-06-09 20:52:26 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/matrix-org/matrix-react-sdk"
|
|
|
|
},
|
2015-07-03 17:56:04 +03:00
|
|
|
"license": "Apache-2.0",
|
2015-09-09 18:57:55 +03:00
|
|
|
"main": "lib/index.js",
|
2016-11-01 18:15:31 +03:00
|
|
|
"files": [
|
2018-12-06 14:44:00 +03:00
|
|
|
".babelrc",
|
2017-01-23 19:19:29 +03:00
|
|
|
".eslintrc.js",
|
2016-11-01 18:15:31 +03:00
|
|
|
"CHANGELOG.md",
|
|
|
|
"CONTRIBUTING.rst",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"code_style.md",
|
|
|
|
"git-revision.txt",
|
|
|
|
"header",
|
|
|
|
"jenkins.sh",
|
|
|
|
"karma.conf.js",
|
|
|
|
"lib",
|
|
|
|
"package.json",
|
|
|
|
"release.sh",
|
|
|
|
"scripts",
|
|
|
|
"src",
|
2018-04-25 18:07:16 +03:00
|
|
|
"test",
|
|
|
|
"res"
|
2016-11-01 18:15:31 +03:00
|
|
|
],
|
2015-09-11 17:42:11 +03:00
|
|
|
"bin": {
|
2017-10-19 12:51:54 +03:00
|
|
|
"reskindex": "scripts/reskindex.js",
|
2017-10-19 14:11:21 +03:00
|
|
|
"matrix-gen-i18n": "scripts/gen-i18n.js",
|
|
|
|
"matrix-prune-i18n": "scripts/prune-i18n.js"
|
2015-09-11 17:42:11 +03:00
|
|
|
},
|
2015-06-09 19:40:42 +03:00
|
|
|
"scripts": {
|
2017-05-09 19:13:27 +03:00
|
|
|
"reskindex": "node scripts/reskindex.js -h header",
|
|
|
|
"reskindex:watch": "node scripts/reskindex.js -h header -w",
|
2019-01-20 05:31:06 +03:00
|
|
|
"rethemendex": "res/css/rethemendex.sh",
|
2017-10-19 12:51:54 +03:00
|
|
|
"i18n": "matrix-gen-i18n",
|
2017-10-19 14:11:21 +03:00
|
|
|
"prunei18n": "matrix-prune-i18n",
|
2019-07-11 18:39:22 +03:00
|
|
|
"diff-i18n": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && ./scripts/gen-i18n.js && node scripts/compare-file.js src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json",
|
2019-03-11 17:22:02 +03:00
|
|
|
"build": "yarn reskindex && yarn start:init",
|
2018-09-25 20:07:46 +03:00
|
|
|
"build:watch": "babel src -w --skip-initial-build -d lib --source-maps --copy-files",
|
2017-06-28 13:35:14 +03:00
|
|
|
"emoji-data-strip": "node scripts/emoji-data-strip.js",
|
2019-03-11 17:22:02 +03:00
|
|
|
"start": "yarn start:init && yarn start:all",
|
|
|
|
"start:all": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n build,reskindex \"yarn build:watch\" \"yarn reskindex:watch\"",
|
2018-09-25 20:07:46 +03:00
|
|
|
"start:init": "babel src -d lib --source-maps --copy-files",
|
2016-07-01 21:30:53 +03:00
|
|
|
"lint": "eslint src/",
|
2016-07-01 20:38:51 +03:00
|
|
|
"lintall": "eslint src/ test/",
|
2019-01-24 03:38:49 +03:00
|
|
|
"lintwithexclusions": "eslint --max-warnings 0 --ignore-path .eslintignore.errorfiles src test",
|
2019-07-09 20:09:31 +03:00
|
|
|
"stylelint": "stylelint 'res/css/**/*.scss'",
|
2015-09-09 18:57:55 +03:00
|
|
|
"clean": "rimraf lib",
|
2019-03-11 19:06:05 +03:00
|
|
|
"prepare": "yarn clean && yarn build && git rev-parse HEAD > git-revision.txt",
|
2019-03-14 07:11:45 +03:00
|
|
|
"test": "karma start --single-run=true --browsers VectorChromeHeadless",
|
2019-10-09 18:38:18 +03:00
|
|
|
"test-multi": "karma start",
|
|
|
|
"e2etests": "./test/end-to-end-tests/run.sh --riot-url http://localhost:8080"
|
2015-06-09 19:40:42 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-11-21 19:56:44 +03:00
|
|
|
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
2018-10-09 18:28:24 +03:00
|
|
|
"babel-runtime": "^6.26.0",
|
2017-07-12 15:58:14 +03:00
|
|
|
"bluebird": "^3.5.0",
|
2016-11-15 14:22:39 +03:00
|
|
|
"blueimp-canvas-to-blob": "^3.5.0",
|
2016-12-01 16:12:22 +03:00
|
|
|
"browser-encrypt-attachment": "^0.3.0",
|
2016-05-16 17:35:39 +03:00
|
|
|
"browser-request": "^0.3.3",
|
2015-06-12 19:34:17 +03:00
|
|
|
"classnames": "^2.1.2",
|
2018-01-07 23:32:41 +03:00
|
|
|
"commonmark": "^0.28.1",
|
2017-05-25 13:24:17 +03:00
|
|
|
"counterpart": "^0.18.0",
|
2019-08-05 12:08:30 +03:00
|
|
|
"create-react-class": "^15.6.0",
|
2019-07-23 10:12:24 +03:00
|
|
|
"diff-dom": "^4.1.3",
|
2019-07-19 17:09:23 +03:00
|
|
|
"diff-match-patch": "^1.0.4",
|
2019-10-01 12:59:14 +03:00
|
|
|
"emojibase-data": "^4.0.2",
|
2019-05-19 18:11:12 +03:00
|
|
|
"emojibase-regex": "^3.0.0",
|
2019-11-09 02:07:11 +03:00
|
|
|
"escape-html": "^1.0.3",
|
2017-01-20 18:12:50 +03:00
|
|
|
"file-saver": "^1.3.3",
|
2017-04-30 15:00:47 +03:00
|
|
|
"filesize": "3.5.6",
|
2017-06-09 23:42:34 +03:00
|
|
|
"flux": "2.1.1",
|
2017-12-05 10:50:40 +03:00
|
|
|
"focus-trap-react": "^3.0.5",
|
2019-09-27 11:00:54 +03:00
|
|
|
"focus-visible": "^5.0.2",
|
2016-06-01 14:24:21 +03:00
|
|
|
"fuse.js": "^2.2.0",
|
2019-08-05 12:07:25 +03:00
|
|
|
"gemini-scrollbar": "github:matrix-org/gemini-scrollbar#91e1e566",
|
2018-04-18 12:53:01 +03:00
|
|
|
"gfm.css": "^1.1.1",
|
2015-09-17 14:10:01 +03:00
|
|
|
"glob": "^5.0.14",
|
2019-10-31 22:20:08 +03:00
|
|
|
"glob-to-regexp": "^0.4.1",
|
2019-06-27 22:36:45 +03:00
|
|
|
"highlight.js": "^9.15.8",
|
2018-12-06 04:00:09 +03:00
|
|
|
"is-ip": "^2.0.0",
|
2016-11-11 20:22:44 +03:00
|
|
|
"isomorphic-fetch": "^2.2.1",
|
2018-06-23 21:28:42 +03:00
|
|
|
"linkifyjs": "^2.1.6",
|
2019-07-11 12:52:18 +03:00
|
|
|
"lodash": "^4.17.14",
|
2019-09-17 23:37:59 +03:00
|
|
|
"lolex": "4.2",
|
2019-11-04 18:09:19 +03:00
|
|
|
"matrix-js-sdk": "2.4.3",
|
2015-09-17 14:10:01 +03:00
|
|
|
"optimist": "^0.6.1",
|
2018-04-18 12:53:01 +03:00
|
|
|
"pako": "^1.0.5",
|
2019-01-14 20:10:20 +03:00
|
|
|
"png-chunks-extract": "^1.0.0",
|
2017-05-04 18:22:06 +03:00
|
|
|
"prop-types": "^15.5.8",
|
2018-06-12 13:11:43 +03:00
|
|
|
"qrcode-react": "^0.1.16",
|
2019-03-06 00:32:14 +03:00
|
|
|
"qs": "^6.6.0",
|
2017-11-10 14:42:56 +03:00
|
|
|
"querystring": "^0.2.0",
|
2019-09-06 21:19:06 +03:00
|
|
|
"react": "^16.9.0",
|
|
|
|
"react-addons-css-transition-group": "15.6.2",
|
2018-04-18 12:53:01 +03:00
|
|
|
"react-beautiful-dnd": "^4.0.1",
|
2019-09-06 21:19:06 +03:00
|
|
|
"react-dom": "^16.9.0",
|
2019-09-17 19:55:49 +03:00
|
|
|
"react-gemini-scrollbar": "github:matrix-org/react-gemini-scrollbar#9cf17f63b7c0b0ec5f31df27da0f82f7238dc594",
|
2018-07-12 20:43:49 +03:00
|
|
|
"resize-observer-polyfill": "^1.5.0",
|
2018-09-17 20:20:12 +03:00
|
|
|
"sanitize-html": "^1.18.4",
|
2018-10-09 12:55:55 +03:00
|
|
|
"slate": "^0.41.2",
|
2018-04-23 03:13:18 +03:00
|
|
|
"slate-html-serializer": "^0.6.1",
|
2018-10-16 12:57:32 +03:00
|
|
|
"slate-md-serializer": "github:matrix-org/slate-md-serializer#f7c4ad3",
|
2018-10-09 12:55:55 +03:00
|
|
|
"slate-react": "^0.18.10",
|
2017-01-18 14:39:44 +03:00
|
|
|
"text-encoding-utf-8": "^1.0.1",
|
2017-07-06 11:28:48 +03:00
|
|
|
"url": "^0.11.0",
|
2019-03-20 13:54:06 +03:00
|
|
|
"velocity-animate": "^1.5.2",
|
2018-11-23 18:50:23 +03:00
|
|
|
"whatwg-fetch": "^1.1.1",
|
|
|
|
"zxcvbn": "^4.4.2"
|
2015-06-09 19:40:42 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-10-09 18:28:24 +03:00
|
|
|
"babel-cli": "^6.26.0",
|
|
|
|
"babel-core": "^6.26.3",
|
2018-10-27 06:48:11 +03:00
|
|
|
"babel-eslint": "^10.0.1",
|
2018-10-09 18:28:24 +03:00
|
|
|
"babel-loader": "^7.1.5",
|
2016-10-17 17:36:27 +03:00
|
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
2017-07-13 19:10:08 +03:00
|
|
|
"babel-plugin-transform-async-to-bluebird": "^1.1.1",
|
2019-03-28 19:22:17 +03:00
|
|
|
"babel-plugin-transform-builtin-extend": "^1.1.2",
|
2018-10-09 18:28:24 +03:00
|
|
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
|
|
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
|
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
|
|
"babel-polyfill": "^6.26.0",
|
|
|
|
"babel-preset-es2015": "^6.24.1",
|
|
|
|
"babel-preset-es2016": "^6.24.1",
|
|
|
|
"babel-preset-es2017": "^6.24.1",
|
|
|
|
"babel-preset-react": "^6.24.1",
|
2019-03-06 17:07:26 +03:00
|
|
|
"chokidar": "^2.1.2",
|
2018-09-25 20:07:46 +03:00
|
|
|
"concurrently": "^4.0.1",
|
2019-01-09 21:10:35 +03:00
|
|
|
"eslint": "^5.12.0",
|
2017-01-20 17:08:14 +03:00
|
|
|
"eslint-config-google": "^0.7.1",
|
2018-10-27 06:48:11 +03:00
|
|
|
"eslint-plugin-babel": "^5.2.1",
|
2017-01-20 17:08:14 +03:00
|
|
|
"eslint-plugin-flowtype": "^2.30.0",
|
2018-05-02 19:30:37 +03:00
|
|
|
"eslint-plugin-react": "^7.7.0",
|
2019-10-07 18:52:50 +03:00
|
|
|
"eslint-plugin-react-hooks": "^2.0.1",
|
2017-10-17 21:19:01 +03:00
|
|
|
"estree-walker": "^0.5.0",
|
2019-03-06 17:07:26 +03:00
|
|
|
"expect": "^24.1.0",
|
2019-01-18 19:55:00 +03:00
|
|
|
"file-loader": "^3.0.1",
|
2017-10-17 21:19:01 +03:00
|
|
|
"flow-parser": "^0.57.3",
|
2018-12-25 05:55:10 +03:00
|
|
|
"jest-mock": "^23.2.0",
|
2019-03-06 17:07:26 +03:00
|
|
|
"karma": "^4.0.1",
|
2019-03-14 07:11:45 +03:00
|
|
|
"karma-chrome-launcher": "^2.2.0",
|
2018-10-09 18:28:24 +03:00
|
|
|
"karma-cli": "^1.0.1",
|
2017-07-27 16:47:22 +03:00
|
|
|
"karma-logcapture-reporter": "0.0.1",
|
2018-10-09 18:28:24 +03:00
|
|
|
"karma-mocha": "^1.3.0",
|
2016-03-29 01:29:49 +03:00
|
|
|
"karma-sourcemap-loader": "^0.3.7",
|
2017-07-27 16:47:22 +03:00
|
|
|
"karma-spec-reporter": "^0.0.31",
|
2018-10-09 18:28:24 +03:00
|
|
|
"karma-summary-reporter": "^1.5.1",
|
|
|
|
"karma-webpack": "^4.0.0-beta.0",
|
2019-03-27 18:07:14 +03:00
|
|
|
"matrix-mock-request": "^1.2.3",
|
2019-08-12 19:41:36 +03:00
|
|
|
"matrix-react-test-utils": "^0.2.2",
|
2018-04-12 19:16:18 +03:00
|
|
|
"mocha": "^5.0.5",
|
2019-09-17 23:33:32 +03:00
|
|
|
"react-test-renderer": "^16.9.0",
|
2015-11-30 20:33:04 +03:00
|
|
|
"require-json": "0.0.1",
|
|
|
|
"rimraf": "^2.4.3",
|
2018-05-21 12:44:00 +03:00
|
|
|
"sinon": "^5.0.7",
|
2018-04-09 15:53:02 +03:00
|
|
|
"source-map-loader": "^0.2.3",
|
2019-04-09 16:05:53 +03:00
|
|
|
"stylelint": "^9.10.1",
|
|
|
|
"stylelint-config-standard": "^18.2.0",
|
2019-07-09 20:35:57 +03:00
|
|
|
"stylelint-scss": "^3.9.0",
|
2017-10-17 21:19:01 +03:00
|
|
|
"walk": "^2.3.9",
|
2018-10-09 18:28:24 +03:00
|
|
|
"webpack": "^4.20.2",
|
|
|
|
"webpack-cli": "^3.1.1"
|
2015-06-09 19:40:42 +03:00
|
|
|
}
|
|
|
|
}
|