2015-06-10 00:40:42 +08:00
|
|
|
{
|
2020-11-25 22:14:34 +08:00
|
|
|
"name": "element-web",
|
2021-08-02 20:16:47 +08:00
|
|
|
"version": "1.7.34",
|
2016-11-03 02:49:28 +08:00
|
|
|
"description": "A feature-rich client for Matrix.org",
|
2018-01-09 05:32:25 +08:00
|
|
|
"author": "New Vector Ltd.",
|
2015-06-10 01:52:26 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-11-24 22:05:44 +08:00
|
|
|
"url": "https://github.com/vector-im/element-web"
|
2015-06-10 01:52:26 +08:00
|
|
|
},
|
2015-07-03 22:56:04 +08:00
|
|
|
"license": "Apache-2.0",
|
2016-10-26 22:35:54 +08:00
|
|
|
"files": [
|
|
|
|
"lib",
|
2020-01-09 07:09:26 +08:00
|
|
|
"res",
|
2016-10-26 22:35:54 +08:00
|
|
|
"src",
|
2020-01-09 07:09:26 +08:00
|
|
|
"webpack.config.js",
|
|
|
|
"scripts",
|
|
|
|
"docs",
|
|
|
|
"release.sh",
|
|
|
|
"deploy",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"CONTRIBUTING.rst",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"AUTHORS.rst",
|
2020-02-05 22:28:44 +08:00
|
|
|
"package.json",
|
|
|
|
"contribute.json"
|
2016-10-26 22:35:54 +08:00
|
|
|
],
|
2015-07-03 22:56:04 +08:00
|
|
|
"style": "bundle.css",
|
2015-06-10 00:40:42 +08:00
|
|
|
"scripts": {
|
2017-10-19 17:53:02 +08:00
|
|
|
"i18n": "matrix-gen-i18n",
|
2017-10-19 19:11:53 +08:00
|
|
|
"prunei18n": "matrix-prune-i18n",
|
2021-04-27 22:07:48 +08: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",
|
2020-01-09 07:09:26 +08:00
|
|
|
"reskindex": "reskindex -h src/header",
|
|
|
|
"reskindex:watch": "reskindex -h src/header -w",
|
2020-01-17 06:40:34 +08:00
|
|
|
"reskindex:watch-react": "node scripts/yarn-sub.js matrix-react-sdk reskindex:watch",
|
2020-05-06 18:32:13 +08:00
|
|
|
"clean": "rimraf lib webapp",
|
2020-12-18 23:27:39 +08:00
|
|
|
"build": "yarn clean && yarn build:genfiles && yarn build:bundle",
|
|
|
|
"build-stats": "yarn clean && yarn build:genfiles && yarn build:bundle-stats",
|
2020-04-17 02:37:41 +08:00
|
|
|
"build:jitsi": "node scripts/build-jitsi.js",
|
2017-01-06 18:43:13 +08:00
|
|
|
"build:res": "node scripts/copy-res.js",
|
2020-04-01 17:38:49 +08:00
|
|
|
"build:genfiles": "yarn reskindex && yarn build:res && yarn build:jitsi",
|
2015-10-29 01:39:50 +08:00
|
|
|
"build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js",
|
2020-07-17 21:54:59 +08:00
|
|
|
"build:bundle": "webpack --progress --bail --mode production",
|
|
|
|
"build:bundle-stats": "webpack --progress --bail --mode production --json > webpack-stats.json",
|
2020-01-09 07:09:26 +08:00
|
|
|
"dist": "scripts/package.sh",
|
2020-09-24 02:39:10 +08:00
|
|
|
"start": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n reskindex,reskindex-react,res,element-js \"yarn reskindex:watch\" \"yarn reskindex:watch-react\" \"yarn start:res\" \"yarn start:js\"",
|
2021-04-18 21:44:38 +08:00
|
|
|
"start:https": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n reskindex,reskindex-react,res,element-js \"yarn reskindex:watch\" \"yarn reskindex:watch-react\" \"yarn start:res\" \"yarn start:js --https\"",
|
2020-04-01 17:38:49 +08:00
|
|
|
"start:res": "yarn build:jitsi && node scripts/copy-res.js -w",
|
2021-08-01 22:28:38 +08:00
|
|
|
"start:js": "webpack-dev-server --host=0.0.0.0 --output-filename=bundles/_dev_/[name].js --output-chunk-filename=bundles/_dev_/[name].js -w --progress --mode development --disable-host-check --hot",
|
2020-07-21 18:30:28 +08:00
|
|
|
"lint": "yarn lint:types && yarn lint:js && yarn lint:style",
|
2021-07-23 23:12:07 +08:00
|
|
|
"lint:js": "eslint --max-warnings 0 src",
|
2021-07-20 05:47:32 +08:00
|
|
|
"lint:js-fix": "eslint --fix src",
|
2020-03-12 08:24:33 +08:00
|
|
|
"lint:types": "tsc --noEmit --jsx react",
|
2020-01-09 07:09:26 +08:00
|
|
|
"lint:style": "stylelint 'res/css/**/*.scss'",
|
2020-01-16 04:00:50 +08:00
|
|
|
"test": "jest"
|
2015-06-10 00:40:42 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-05-25 00:27:24 +08:00
|
|
|
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.3.tgz",
|
2016-05-25 08:08:09 +08:00
|
|
|
"browser-request": "^0.3.3",
|
2018-09-26 19:33:53 +08:00
|
|
|
"gfm.css": "^1.1.2",
|
2021-01-27 22:10:51 +08:00
|
|
|
"highlight.js": "^10.5.0",
|
2021-05-05 14:38:10 +08:00
|
|
|
"jsrsasign": "^10.2.0",
|
2020-11-27 20:18:24 +08:00
|
|
|
"katex": "^0.12.0",
|
2021-08-02 20:20:30 +08:00
|
|
|
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#develop",
|
2021-08-02 20:20:41 +08:00
|
|
|
"matrix-react-sdk": "github:matrix-org/matrix-react-sdk#develop",
|
2021-06-24 01:25:19 +08:00
|
|
|
"matrix-widget-api": "^0.1.0-beta.15",
|
2019-08-01 22:31:33 +08:00
|
|
|
"prop-types": "^15.7.2",
|
2021-06-09 18:40:36 +08:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
2021-05-10 22:00:56 +08:00
|
|
|
"sanitize-html": "^2.3.2",
|
2021-05-07 06:24:19 +08:00
|
|
|
"ua-parser-js": "^0.7.24"
|
2015-06-10 00:40:42 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-01-27 22:10:51 +08:00
|
|
|
"@babel/core": "^7.12.10",
|
2021-06-30 20:24:16 +08:00
|
|
|
"@babel/eslint-parser": "^7.12.10",
|
|
|
|
"@babel/eslint-plugin": "^7.12.10",
|
2021-01-27 22:10:51 +08:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.12.12",
|
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.12.1",
|
2021-01-27 22:50:00 +08:00
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
|
2021-01-27 22:10:51 +08:00
|
|
|
"@babel/plugin-proposal-numeric-separator": "^7.12.7",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
|
2021-01-27 22:50:00 +08:00
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
|
2021-01-27 22:10:51 +08:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
|
|
"@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/runtime": "^7.12.5",
|
2021-04-22 19:09:50 +08:00
|
|
|
"@principalstudio/html-webpack-inject-preload": "^1.2.7",
|
2020-06-02 22:51:45 +08:00
|
|
|
"@types/flux": "^3.1.9",
|
2020-04-05 07:55:36 +08:00
|
|
|
"@types/modernizr": "^3.5.3",
|
2021-01-27 22:31:17 +08:00
|
|
|
"@types/node": "^14.14.22",
|
2021-06-22 15:15:27 +08:00
|
|
|
"@types/react": "^17.0.2",
|
|
|
|
"@types/react-dom": "^17.0.2",
|
2021-05-10 22:00:56 +08:00
|
|
|
"@types/sanitize-html": "^2.3.1",
|
2021-06-30 20:24:16 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.17.0",
|
|
|
|
"@typescript-eslint/parser": "^4.17.0",
|
2021-08-04 01:10:36 +08:00
|
|
|
"allchange": "github:matrix-org/allchange",
|
2021-01-27 22:10:51 +08:00
|
|
|
"autoprefixer": "^9.8.6",
|
2021-01-27 22:31:17 +08:00
|
|
|
"babel-jest": "^26.6.3",
|
2021-01-27 22:10:51 +08:00
|
|
|
"babel-loader": "^8.2.2",
|
|
|
|
"chokidar": "^3.5.1",
|
2021-01-27 22:31:17 +08:00
|
|
|
"concurrently": "^5.3.0",
|
2021-01-27 22:10:51 +08:00
|
|
|
"cpx": "^1.5.0",
|
|
|
|
"css-loader": "^3.6.0",
|
2021-08-01 23:05:33 +08:00
|
|
|
"dotenv": "^10.0.0",
|
2021-01-27 22:10:51 +08:00
|
|
|
"eslint": "7.18.0",
|
2021-06-30 20:24:16 +08:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2021-08-04 00:17:20 +08:00
|
|
|
"eslint-plugin-matrix-org": "github:matrix-org/eslint-plugin-matrix-org#2306b3d4da4eba908b256014b979f1d3d43d2945",
|
2021-01-27 22:10:51 +08:00
|
|
|
"eslint-plugin-react": "^7.22.0",
|
2021-01-27 22:31:17 +08:00
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
2019-12-06 20:36:58 +08:00
|
|
|
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
2021-01-27 22:10:51 +08:00
|
|
|
"fake-indexeddb": "^3.1.2",
|
|
|
|
"file-loader": "^5.1.0",
|
2016-08-02 19:42:06 +08:00
|
|
|
"fs-extra": "^0.30.0",
|
2021-04-22 17:22:52 +08:00
|
|
|
"html-webpack-plugin": "^4.5.2",
|
2021-01-27 22:10:51 +08:00
|
|
|
"jest": "^26.6.3",
|
2020-10-07 07:08:41 +08:00
|
|
|
"jest-environment-jsdom-sixteen": "^1.0.3",
|
2021-01-27 22:10:51 +08:00
|
|
|
"json-loader": "^0.5.7",
|
|
|
|
"loader-utils": "^1.4.0",
|
2019-03-27 23:09:34 +08:00
|
|
|
"matrix-mock-request": "^1.2.3",
|
2021-06-15 18:59:33 +08:00
|
|
|
"matrix-react-test-utils": "^0.2.3",
|
2021-04-26 23:52:11 +08:00
|
|
|
"matrix-web-i18n": "github:matrix-org/matrix-web-i18n",
|
2021-01-27 22:10:51 +08:00
|
|
|
"mini-css-extract-plugin": "^0.12.0",
|
|
|
|
"minimist": "^1.2.5",
|
2021-01-27 22:31:17 +08:00
|
|
|
"mkdirp": "^1.0.4",
|
2021-07-09 18:49:07 +08:00
|
|
|
"modernizr": "^3.11.7",
|
2021-01-27 22:10:51 +08:00
|
|
|
"node-fetch": "^2.6.1",
|
|
|
|
"optimize-css-assets-webpack-plugin": "^5.0.4",
|
2020-07-17 17:36:38 +08:00
|
|
|
"postcss-easings": "^2.0.0",
|
2017-01-10 19:06:09 +08:00
|
|
|
"postcss-extend": "^1.0.5",
|
2021-01-27 22:10:51 +08:00
|
|
|
"postcss-hexrgba": "^2.0.1",
|
2019-12-24 10:48:19 +08:00
|
|
|
"postcss-import": "^12.0.1",
|
|
|
|
"postcss-loader": "^3.0.0",
|
|
|
|
"postcss-mixins": "^6.2.3",
|
2021-01-27 22:10:51 +08:00
|
|
|
"postcss-nested": "^4.2.3",
|
2019-12-24 10:48:19 +08:00
|
|
|
"postcss-preset-env": "^6.7.0",
|
2021-01-27 22:10:51 +08:00
|
|
|
"postcss-scss": "^2.1.1",
|
2019-12-24 10:48:19 +08:00
|
|
|
"postcss-simple-vars": "^5.0.2",
|
2017-01-10 19:06:09 +08:00
|
|
|
"postcss-strip-inline-comments": "^0.1.5",
|
2021-01-27 22:31:17 +08:00
|
|
|
"rimraf": "^3.0.2",
|
2019-10-11 19:01:50 +08:00
|
|
|
"shell-escape": "^0.2.0",
|
2020-10-16 20:48:28 +08:00
|
|
|
"simple-proxy-agent": "^1.1.0",
|
2021-08-01 22:28:38 +08:00
|
|
|
"string-replace-loader": "2",
|
|
|
|
"style-loader": "2",
|
2021-01-27 22:31:17 +08:00
|
|
|
"stylelint": "^13.9.0",
|
2021-07-15 01:13:00 +08:00
|
|
|
"stylelint-config-standard": "^20.0.0",
|
|
|
|
"stylelint-scss": "^3.18.0",
|
2021-01-27 22:10:51 +08:00
|
|
|
"terser-webpack-plugin": "^2.3.8",
|
2021-01-27 22:31:17 +08:00
|
|
|
"typescript": "^4.1.3",
|
2021-01-27 22:10:51 +08:00
|
|
|
"webpack": "^4.46.0",
|
|
|
|
"webpack-cli": "^3.3.12",
|
2021-07-13 01:43:21 +08:00
|
|
|
"webpack-dev-server": "^3.11.2",
|
|
|
|
"worker-loader": "^2.0.0"
|
2021-01-27 22:14:25 +08:00
|
|
|
},
|
2020-01-16 04:00:50 +08:00
|
|
|
"jest": {
|
2020-10-07 07:08:41 +08:00
|
|
|
"testEnvironment": "jest-environment-jsdom-sixteen",
|
2020-01-16 04:00:50 +08:00
|
|
|
"testMatch": [
|
2021-07-16 20:45:10 +08:00
|
|
|
"<rootDir>/test/**/*-test.[tj]s"
|
2020-01-16 04:00:50 +08:00
|
|
|
],
|
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"<rootDir>/node_modules/matrix-react-sdk/test/setupTests.js"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
2020-04-23 01:58:44 +08:00
|
|
|
"\\.(css|scss)$": "<rootDir>/__mocks__/cssMock.js",
|
2020-01-16 04:00:50 +08:00
|
|
|
"\\.(gif|png|svg|ttf|woff2)$": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/imageMock.js",
|
2020-01-16 05:06:55 +08:00
|
|
|
"\\$webapp/i18n/languages.json": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/languages.json",
|
2020-01-16 05:42:16 +08:00
|
|
|
"^browser-request$": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/browser-request.js",
|
|
|
|
"^react$": "<rootDir>/node_modules/react",
|
2020-01-21 05:28:29 +08:00
|
|
|
"^react-dom$": "<rootDir>/node_modules/react-dom",
|
|
|
|
"^matrix-js-sdk$": "<rootDir>/node_modules/matrix-js-sdk/src",
|
2021-05-07 12:14:33 +08:00
|
|
|
"^matrix-react-sdk$": "<rootDir>/node_modules/matrix-react-sdk/src",
|
|
|
|
"decoderWorker\\.min\\.js": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/empty.js",
|
|
|
|
"decoderWorker\\.min\\.wasm": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/empty.js",
|
2021-06-25 18:44:49 +08:00
|
|
|
"waveWorker\\.min\\.js": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/empty.js",
|
2021-07-13 03:51:22 +08:00
|
|
|
"context-filter-polyfill": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/empty.js",
|
2021-07-15 01:56:35 +08:00
|
|
|
"FontManager.ts": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/FontManager.js",
|
2021-07-15 02:05:57 +08:00
|
|
|
"workers/(.+)\\.worker\\.ts": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/workerMock.js"
|
2020-01-16 04:00:50 +08:00
|
|
|
},
|
|
|
|
"transformIgnorePatterns": [
|
|
|
|
"/node_modules/(?!matrix-js-sdk).+$",
|
|
|
|
"/node_modules/(?!matrix-react-sdk).+$"
|
2020-01-16 06:31:08 +08:00
|
|
|
]
|
2015-06-10 00:40:42 +08:00
|
|
|
}
|
|
|
|
}
|