Files
element-web/package.json
T

171 lines
5.7 KiB
JSON
Raw Normal View History

{
"name": "matrix-react-sdk",
2020-03-30 13:41:02 +01:00
"version": "2.3.0",
"description": "SDK for matrix.org using React",
"author": "matrix.org",
"repository": {
"type": "git",
"url": "https://github.com/matrix-org/matrix-react-sdk"
},
"license": "Apache-2.0",
2016-11-01 15:15:31 +00:00
"files": [
2019-12-19 18:01:43 -07:00
"lib",
"res",
"src",
"scripts",
"git-revision.txt",
2020-01-07 15:13:42 -07:00
"docs",
2019-12-19 18:01:43 -07:00
"header",
2016-11-01 15:15:31 +00:00
"CHANGELOG.md",
"CONTRIBUTING.rst",
"LICENSE",
"README.md",
2019-12-19 18:01:43 -07:00
"package.json"
2016-11-01 15:15:31 +00:00
],
"bin": {
2017-10-19 10:51:54 +01:00
"reskindex": "scripts/reskindex.js",
2017-10-19 12:11:21 +01:00
"matrix-gen-i18n": "scripts/gen-i18n.js",
"matrix-prune-i18n": "scripts/prune-i18n.js"
},
2019-12-19 18:01:43 -07:00
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"matrix_src_main": "./src/index.js",
"scripts": {
2020-01-22 14:15:17 +00:00
"prepare": "yarn build",
2017-10-19 10:51:54 +01:00
"i18n": "matrix-gen-i18n",
2017-10-19 12:11:21 +01:00
"prunei18n": "matrix-prune-i18n",
2019-07-11 09:39:22 -06: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-12-12 14:37:14 -07:00
"reskindex": "node scripts/reskindex.js -h header",
"reskindex:watch": "node scripts/reskindex.js -h header -w",
"rethemendex": "res/css/rethemendex.sh",
"clean": "rimraf lib",
2019-12-12 14:37:14 -07:00
"build": "yarn clean && git rev-parse HEAD > git-revision.txt && yarn build:compile && yarn build:types",
2020-03-11 17:47:18 -06:00
"build:compile": "yarn reskindex && babel -d lib --verbose --extensions \".ts,.js,.tsx\" src",
2020-03-11 18:24:01 -06:00
"build:types": "tsc --emitDeclarationOnly --jsx react",
2019-12-12 14:37:14 -07: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\"",
"lint": "yarn lint:types && yarn lint:ts && yarn lint:js && yarn lint:style",
"lint:js": "eslint --max-warnings 0 --ignore-path .eslintignore.errorfiles src test",
"lint:ts": "tslint --project ./tsconfig.json -t stylish",
2020-03-11 18:24:01 -06:00
"lint:types": "tsc --noEmit --jsx react",
2019-12-12 14:37:14 -07:00
"lint:style": "stylelint 'res/css/**/*.scss'",
2019-12-17 12:23:51 +00:00
"test": "jest",
2019-12-12 14:37:14 -07:00
"test:e2e": "./test/end-to-end-tests/run.sh --riot-url http://localhost:8080"
},
"dependencies": {
"@babel/runtime": "^7.8.3",
"blueimp-canvas-to-blob": "^3.5.0",
"browser-encrypt-attachment": "^0.3.0",
2016-05-16 15:35:39 +01:00
"browser-request": "^0.3.3",
"classnames": "^2.1.2",
"commonmark": "^0.28.1",
2017-05-25 11:24:17 +01:00
"counterpart": "^0.18.0",
2019-08-05 10:08:30 +01:00
"create-react-class": "^15.6.0",
"diff-dom": "^4.1.3",
"diff-match-patch": "^1.0.4",
"emojibase-data": "^4.0.2",
2019-05-19 16:11:12 +01:00
"emojibase-regex": "^3.0.0",
2019-11-08 16:07:11 -07:00
"escape-html": "^1.0.3",
2017-01-20 15:12:50 +00:00
"file-saver": "^1.3.3",
2017-04-30 13:00:47 +01:00
"filesize": "3.5.6",
"flux": "2.1.1",
"focus-visible": "^5.0.2",
2016-06-01 16:54:21 +05:30
"fuse.js": "^2.2.0",
"gfm.css": "^1.1.1",
"glob-to-regexp": "^0.4.1",
2019-06-27 20:36:45 +01:00
"highlight.js": "^9.15.8",
2020-01-05 22:22:09 +00:00
"html-entities": "^1.2.1",
"is-ip": "^2.0.0",
"linkifyjs": "^2.1.6",
2019-07-11 10:52:18 +01:00
"lodash": "^4.17.14",
2020-03-30 13:31:42 +01:00
"matrix-js-sdk": "5.2.0",
"minimist": "^1.2.0",
"pako": "^1.0.5",
"png-chunks-extract": "^1.0.0",
2020-03-20 14:19:47 -06:00
"project-name-generator": "^2.1.7",
2017-05-04 16:22:06 +01:00
"prop-types": "^15.5.8",
"qrcode": "^1.4.4",
"qrcode-react": "^0.1.16",
"qs": "^6.6.0",
2019-09-06 19:19:06 +01:00
"react": "^16.9.0",
"react-addons-css-transition-group": "15.6.2",
"react-beautiful-dnd": "^4.0.1",
2019-09-06 19:19:06 +01:00
"react-dom": "^16.9.0",
"react-focus-lock": "^2.2.1",
2018-07-12 18:43:49 +01:00
"resize-observer-polyfill": "^1.5.0",
2018-09-17 18:20:12 +01:00
"sanitize-html": "^1.18.4",
"text-encoding-utf-8": "^1.0.1",
"url": "^0.11.0",
2019-03-20 10:54:06 +00:00
"velocity-animate": "^1.5.2",
"what-input": "^5.2.6",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
2019-12-12 14:37:14 -07:00
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
2019-12-12 14:37:14 -07:00
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-flow-comments": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.8.3",
2019-12-12 14:37:14 -07:00
"@babel/preset-env": "^7.7.6",
"@babel/preset-flow": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/register": "^7.7.4",
2020-01-09 17:15:13 -07:00
"@peculiar/webcrypto": "^1.0.22",
2020-03-18 16:40:21 +00:00
"@types/classnames": "^2.2.10",
2020-03-11 17:47:18 -06:00
"@types/react": "16.9",
2019-12-12 14:37:14 -07:00
"babel-eslint": "^10.0.3",
2020-01-09 16:17:27 -07:00
"babel-jest": "^24.9.0",
"chokidar": "^3.3.1",
"concurrently": "^4.0.1",
2020-01-06 13:28:29 +00:00
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
2019-01-09 18:10:35 +00:00
"eslint": "^5.12.0",
2017-01-20 14:08:14 +00:00
"eslint-config-google": "^0.7.1",
2018-10-26 22:48:11 -05:00
"eslint-plugin-babel": "^5.2.1",
2017-01-20 14:08:14 +00:00
"eslint-plugin-flowtype": "^2.30.0",
2019-11-27 13:31:44 +00:00
"eslint-plugin-jest": "^23.0.4",
2018-05-02 17:30:37 +01:00
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-hooks": "^2.0.1",
"estree-walker": "^0.5.0",
"file-loader": "^3.0.1",
"flow-parser": "^0.57.3",
"glob": "^5.0.14",
2020-01-09 16:17:27 -07:00
"jest": "^24.9.0",
"lolex": "^5.1.2",
2019-03-27 15:07:14 +00:00
"matrix-mock-request": "^1.2.3",
"matrix-react-test-utils": "^0.2.2",
"react-test-renderer": "^16.9.0",
2015-11-30 17:33:04 +00:00
"rimraf": "^2.4.3",
"source-map-loader": "^0.2.3",
2019-04-09 14:05:53 +01:00
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
2019-07-09 18:35:57 +01:00
"stylelint-scss": "^3.9.0",
2019-12-12 14:37:14 -07:00
"tslint": "^5.20.1",
"typescript": "^3.7.3",
"walk": "^2.3.9",
2018-10-09 17:28:24 +02:00
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
2019-12-17 11:24:37 +00:00
},
"jest": {
2020-01-09 16:17:27 -07:00
"testMatch": [
"<rootDir>/test/**/*-test.js"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.js"
],
2019-12-17 11:24:37 +00:00
"moduleNameMapper": {
2020-01-09 17:22:21 -07:00
"\\.(gif|png|svg|ttf|woff2)$": "<rootDir>/__mocks__/imageMock.js",
"\\$webapp/i18n/languages.json": "<rootDir>/__mocks__/languages.json"
},
"transformIgnorePatterns": [
"/node_modules/(?!matrix-js-sdk).+$"
]
}
}