2015-06-09 19:40:42 +03:00
{
2016-12-05 17:40:06 +03:00
"name" : "riot-web" ,
2016-11-02 21:49:28 +03:00
"productName" : "Riot" ,
2020-06-17 23:52:14 +03:00
"version" : "1.6.6-rc.1" ,
2016-11-02 21:49:28 +03:00
"description" : "A feature-rich client for Matrix.org" ,
2018-01-09 00:32:25 +03:00
"author" : "New Vector Ltd." ,
2015-06-09 20:52:26 +03:00
"repository" : {
"type" : "git" ,
2016-12-05 17:40:06 +03:00
"url" : "https://github.com/vector-im/riot-web"
2015-06-09 20:52:26 +03:00
} ,
2015-07-03 17:56:04 +03:00
"license" : "Apache-2.0" ,
2016-10-26 17:35:54 +03:00
"files" : [
"lib" ,
2020-01-09 02:09:26 +03:00
"res" ,
2016-10-26 17:35:54 +03:00
"src" ,
2020-01-09 02:09:26 +03:00
"webpack.config.js" ,
"scripts" ,
"docs" ,
"release.sh" ,
"deploy" ,
"CHANGELOG.md" ,
"CONTRIBUTING.rst" ,
"LICENSE" ,
"README.md" ,
"AUTHORS.rst" ,
2020-02-05 17:28:44 +03:00
"package.json" ,
"contribute.json"
2016-10-26 17:35:54 +03:00
] ,
2015-07-03 17:56:04 +03:00
"style" : "bundle.css" ,
2015-06-09 19:40:42 +03:00
"scripts" : {
2017-10-19 12:53:02 +03:00
"i18n" : "matrix-gen-i18n" ,
2017-10-19 14:11:53 +03:00
"prunei18n" : "matrix-prune-i18n" ,
2019-07-11 21:45:06 +03:00
"diff-i18n" : "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && yarn i18n && node scripts/compare-file.js src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json" ,
2020-01-09 02:09:26 +03:00
"reskindex" : "reskindex -h src/header" ,
"reskindex:watch" : "reskindex -h src/header -w" ,
2020-01-17 01:40:34 +03:00
"reskindex:watch-react" : "node scripts/yarn-sub.js matrix-react-sdk reskindex:watch" ,
2020-05-06 13:32:13 +03:00
"clean" : "rimraf lib webapp" ,
2020-01-14 03:38:34 +03:00
"build" : "yarn clean && yarn build:genfiles && yarn build:compile && yarn build:types && yarn build:bundle" ,
2020-03-23 15:07:26 +03:00
"build-stats" : "yarn clean && yarn build:genfiles && yarn build:compile && yarn build:types && yarn build:bundle-stats" ,
2020-04-16 21:37:41 +03:00
"build:jitsi" : "node scripts/build-jitsi.js" ,
2017-01-06 13:43:13 +03:00
"build:res" : "node scripts/copy-res.js" ,
2020-04-01 12:38:49 +03:00
"build:genfiles" : "yarn reskindex && yarn build:res && yarn build:jitsi" ,
2015-10-28 20:39:50 +03:00
"build:modernizr" : "modernizr -c .modernizr.json -d src/vector/modernizr.js" ,
2020-03-12 03:19:03 +03:00
"build:compile" : "babel -d lib --verbose --extensions \".ts,.js,.tsx\" src" ,
2019-01-01 02:22:47 +03:00
"build:bundle" : "cross-env NODE_ENV=production webpack -p --progress --bail --mode production" ,
2020-03-23 15:07:26 +03:00
"build:bundle-stats" : "cross-env NODE_ENV=production webpack -p --progress --bail --mode production --json > webpack-stats.json" ,
2020-03-12 03:24:33 +03:00
"build:types" : "tsc --emitDeclarationOnly --jsx react" ,
2020-01-09 02:09:26 +03:00
"dist" : "scripts/package.sh" ,
2020-01-17 02:26:13 +03:00
"start" : "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n reskindex,reskindex-react,res,riot-js \"yarn reskindex:watch\" \"yarn reskindex:watch-react\" \"yarn start:res\" \"yarn start:js\"" ,
2020-04-01 12:38:49 +03:00
"start:res" : "yarn build:jitsi && node scripts/copy-res.js -w" ,
2018-11-08 22:55:51 +03: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" ,
2020-01-09 02:09:26 +03:00
"lint" : "yarn lint:types && yarn lint:ts && yarn lint:js && yarn lint:style" ,
2020-01-13 23:41:17 +03:00
"lint:js" : "eslint src" ,
2020-01-09 02:09:26 +03:00
"lint:ts" : "echo 'We don't actually have a typescript linter at this layer because tslint is being removed from our stack. Presumably your TS is fine.'" ,
2020-03-12 03:24:33 +03:00
"lint:types" : "tsc --noEmit --jsx react" ,
2020-01-09 02:09:26 +03:00
"lint:style" : "stylelint 'res/css/**/*.scss'" ,
2020-01-15 23:00:50 +03:00
"test" : "jest"
2015-06-09 19:40:42 +03:00
} ,
"dependencies" : {
2016-05-25 03:08:09 +03:00
"browser-request" : "^0.3.3" ,
2018-09-26 14:33:53 +03:00
"gfm.css" : "^1.1.2" ,
2018-10-29 17:30:35 +03:00
"highlight.js" : "^9.13.1" ,
2020-06-23 17:20:24 +03:00
"matrix-js-sdk" : "7.0.0" ,
2020-06-23 17:20:43 +03:00
"matrix-react-sdk" : "2.8.0" ,
2019-10-09 17:40:25 +03:00
"olm" : "https://packages.matrix.org/npm/olm/olm-3.1.4.tgz" ,
2019-11-26 22:12:28 +03:00
"postcss-easings" : "^2.0.0" ,
2019-08-01 17:31:33 +03:00
"prop-types" : "^15.7.2" ,
2019-08-28 13:07:46 +03:00
"react" : "^16.9.0" ,
"react-dom" : "^16.9.0" ,
2018-10-16 13:12:13 +03:00
"sanitize-html" : "^1.19.1" ,
2018-10-29 17:30:35 +03:00
"ua-parser-js" : "^0.7.19" ,
2018-04-18 12:53:17 +03:00
"url" : "^0.11.0"
2015-06-09 19:40:42 +03:00
} ,
"devDependencies" : {
2019-12-24 05:48:19 +03: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" ,
"@babel/plugin-proposal-numeric-separator" : "^7.7.4" ,
"@babel/plugin-proposal-object-rest-spread" : "^7.7.4" ,
"@babel/plugin-syntax-dynamic-import" : "^7.7.4" ,
"@babel/plugin-transform-flow-comments" : "^7.7.4" ,
"@babel/plugin-transform-runtime" : "^7.7.6" ,
"@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" ,
"@babel/runtime" : "^7.7.6" ,
2020-06-02 17:51:45 +03:00
"@types/flux" : "^3.1.9" ,
2020-04-05 02:55:36 +03:00
"@types/modernizr" : "^3.5.3" ,
2020-05-22 15:52:40 +03:00
"@types/node" : "^12.12.41" ,
2020-03-12 03:19:03 +03:00
"@types/react" : "16.9" ,
2019-12-24 05:48:19 +03:00
"@types/react-dom" : "^16.9.4" ,
"autoprefixer" : "^9.7.3" ,
"babel-eslint" : "^10.0.3" ,
2020-01-15 23:00:50 +03:00
"babel-jest" : "^24.9.0" ,
2019-12-24 05:48:19 +03:00
"babel-loader" : "^8.0.6" ,
2020-01-16 00:42:00 +03:00
"canvas" : "^2.6.1" ,
2020-01-17 01:40:34 +03:00
"chokidar" : "^3.3.1" ,
2018-09-18 02:46:13 +03:00
"concurrently" : "^4.0.1" ,
2016-08-09 19:14:09 +03:00
"cpx" : "^1.3.2" ,
2020-01-09 02:09:26 +03:00
"cross-env" : "^6.0.3" ,
2019-12-24 05:48:19 +03:00
"css-loader" : "^3.3.2" ,
2018-10-29 17:30:35 +03:00
"eslint" : "^5.8.0" ,
2017-01-24 16:07:34 +03:00
"eslint-config-google" : "^0.7.1" ,
2018-09-26 04:27:22 +03:00
"eslint-plugin-babel" : "^4.1.2" ,
2018-09-28 13:02:14 +03:00
"eslint-plugin-flowtype" : "^2.50.3" ,
2019-11-26 22:12:28 +03:00
"eslint-plugin-jest" : "^23.0.4" ,
2018-09-28 13:02:14 +03:00
"eslint-plugin-react" : "^7.11.1" ,
2019-11-04 19:51:04 +03:00
"eslint-plugin-react-hooks" : "^2.2.0" ,
2019-12-06 15:36:58 +03:00
"extract-text-webpack-plugin" : "^4.0.0-beta.0" ,
2020-01-15 23:00:50 +03:00
"fake-indexeddb" : "^3.0.0" ,
2019-12-24 05:48:19 +03:00
"file-loader" : "^5.0.2" ,
2016-08-02 14:42:06 +03:00
"fs-extra" : "^0.30.0" ,
2018-04-27 12:32:59 +03:00
"html-webpack-plugin" : "^3.2.0" ,
2020-01-15 23:00:50 +03:00
"jest" : "^24.9.0" ,
2020-01-16 01:30:40 +03:00
"jest-environment-jsdom-fourteen" : "^1.0.1" ,
2015-10-02 13:48:52 +03:00
"json-loader" : "^0.5.3" ,
2019-02-18 18:11:41 +03:00
"loader-utils" : "^1.2.3" ,
2019-03-27 18:09:34 +03:00
"matrix-mock-request" : "^1.2.3" ,
2019-08-12 19:41:51 +03:00
"matrix-react-test-utils" : "^0.2.2" ,
2019-12-24 05:48:19 +03:00
"mini-css-extract-plugin" : "^0.8.0" ,
2017-01-06 13:43:13 +03:00
"minimist" : "^1.2.0" ,
2016-10-26 15:32:26 +03:00
"mkdirp" : "^0.5.1" ,
2020-02-04 14:00:47 +03:00
"modernizr" : "^3.6.0" ,
2020-04-16 21:37:41 +03:00
"node-fetch" : "^2.6.0" ,
2019-12-24 05:48:19 +03:00
"optimize-css-assets-webpack-plugin" : "^5.0.3" ,
2017-01-10 14:06:09 +03:00
"postcss-extend" : "^1.0.5" ,
2020-04-07 12:48:56 +03:00
"postcss-hexrgba" : "^2.0.0" ,
2019-12-24 05:48:19 +03:00
"postcss-import" : "^12.0.1" ,
"postcss-loader" : "^3.0.0" ,
"postcss-mixins" : "^6.2.3" ,
"postcss-nested" : "^4.2.1" ,
"postcss-preset-env" : "^6.7.0" ,
"postcss-scss" : "^2.0.0" ,
"postcss-simple-vars" : "^5.0.2" ,
2017-01-10 14:06:09 +03:00
"postcss-strip-inline-comments" : "^0.1.5" ,
2015-09-22 19:20:22 +03:00
"rimraf" : "^2.4.3" ,
2019-10-11 14:01:50 +03:00
"shell-escape" : "^0.2.0" ,
2020-01-09 02:09:26 +03:00
"stylelint" : "^12.0.1" ,
2019-12-24 05:48:19 +03:00
"terser-webpack-plugin" : "^2.3.0" ,
"typescript" : "^3.7.3" ,
"webpack" : "^4.41.2" ,
"webpack-cli" : "^3.3.10" ,
"webpack-dev-server" : "^3.9.0"
2016-06-20 17:10:19 +03:00
} ,
2020-01-15 23:00:50 +03:00
"jest" : {
2020-01-16 01:30:40 +03:00
"testEnvironment" : "jest-environment-jsdom-fourteen" ,
2020-01-15 23:00:50 +03:00
"testMatch" : [
"<rootDir>/test/**/*-test.js"
] ,
"setupFilesAfterEnv" : [
"<rootDir>/node_modules/matrix-react-sdk/test/setupTests.js"
] ,
"moduleNameMapper" : {
2020-04-22 20:58:44 +03:00
"\\.(css|scss)$" : "<rootDir>/__mocks__/cssMock.js" ,
2020-01-15 23:00:50 +03:00
"\\.(gif|png|svg|ttf|woff2)$" : "<rootDir>/node_modules/matrix-react-sdk/__mocks__/imageMock.js" ,
2020-01-16 00:06:55 +03:00
"\\$webapp/i18n/languages.json" : "<rootDir>/node_modules/matrix-react-sdk/__mocks__/languages.json" ,
2020-01-16 00:42:16 +03:00
"^browser-request$" : "<rootDir>/node_modules/matrix-react-sdk/__mocks__/browser-request.js" ,
"^react$" : "<rootDir>/node_modules/react" ,
2020-01-21 00:28:29 +03:00
"^react-dom$" : "<rootDir>/node_modules/react-dom" ,
"^matrix-js-sdk$" : "<rootDir>/node_modules/matrix-js-sdk/src" ,
"^matrix-react-sdk$" : "<rootDir>/node_modules/matrix-react-sdk/src"
2020-01-15 23:00:50 +03:00
} ,
"transformIgnorePatterns" : [
"/node_modules/(?!matrix-js-sdk).+$" ,
"/node_modules/(?!matrix-react-sdk).+$"
2020-01-16 01:31:08 +03:00
]
2015-06-09 19:40:42 +03:00
}
}