2021-07-28 16:15:52 +03:00
|
|
|
{
|
|
|
|
"name": "cinny",
|
2022-05-29 08:18:20 +03:00
|
|
|
"version": "2.0.4",
|
2021-08-01 17:58:34 +03:00
|
|
|
"description": "Yet another matrix client",
|
2021-07-28 16:15:52 +03:00
|
|
|
"main": "index.js",
|
|
|
|
"engines": {
|
2022-05-27 10:39:36 +03:00
|
|
|
"npm": ">=6.14.8 <=8.5.5",
|
|
|
|
"node": ">=14.15.0 <=17.9.0"
|
2021-07-28 16:15:52 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "webpack serve --config ./webpack.dev.js --open",
|
2021-11-07 12:16:36 +02:00
|
|
|
"build": "webpack --config ./webpack.prod.js"
|
2021-07-28 16:15:52 +03:00
|
|
|
},
|
|
|
|
"keywords": [],
|
2021-07-31 05:51:57 +03:00
|
|
|
"author": "Ajay Bura",
|
2021-08-03 06:17:11 +03:00
|
|
|
"license": "MIT",
|
2021-07-28 16:15:52 +03:00
|
|
|
"dependencies": {
|
2022-06-07 12:38:55 +03:00
|
|
|
"@fontsource/inter": "^4.5.11",
|
2022-05-20 06:54:28 +03:00
|
|
|
"@fontsource/roboto": "^4.5.7",
|
2021-12-13 17:37:15 +02:00
|
|
|
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.8.tgz",
|
2022-02-22 16:26:47 +02:00
|
|
|
"@tippyjs/react": "^4.2.6",
|
2021-07-28 16:15:52 +03:00
|
|
|
"babel-polyfill": "^6.26.0",
|
|
|
|
"browser-encrypt-attachment": "^0.3.0",
|
2022-02-22 16:21:31 +02:00
|
|
|
"dateformat": "^5.0.3",
|
2022-02-22 16:10:53 +02:00
|
|
|
"emojibase-data": "^7.0.1",
|
2021-12-06 06:52:45 +02:00
|
|
|
"file-saver": "^2.0.5",
|
2022-01-27 06:19:52 +02:00
|
|
|
"flux": "^4.0.3",
|
2021-11-06 11:45:35 +02:00
|
|
|
"formik": "^2.2.9",
|
2022-06-21 15:03:58 +03:00
|
|
|
"html-react-parser": "^2.0.0",
|
2022-05-24 17:13:21 +03:00
|
|
|
"katex": "^0.15.6",
|
2022-07-08 17:59:07 +03:00
|
|
|
"linkify-html": "^4.0.0-beta.5",
|
|
|
|
"linkifyjs": "^4.0.0-beta.5",
|
2022-06-14 17:42:27 +03:00
|
|
|
"matrix-js-sdk": "^18.1.0",
|
2022-02-22 16:25:52 +02:00
|
|
|
"micromark": "^3.0.10",
|
2022-02-03 16:43:29 +02:00
|
|
|
"micromark-extension-gfm": "^2.0.1",
|
2022-04-24 18:48:35 +03:00
|
|
|
"micromark-extension-math": "^2.0.2",
|
2022-01-31 17:58:42 +02:00
|
|
|
"micromark-util-chunked": "^1.0.0",
|
|
|
|
"micromark-util-resolve-all": "^1.0.0",
|
|
|
|
"micromark-util-symbol": "^1.0.1",
|
2022-01-31 06:04:14 +02:00
|
|
|
"prop-types": "^15.8.1",
|
2021-07-28 16:15:52 +03:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-autosize-textarea": "^7.1.0",
|
2022-04-05 06:37:23 +03:00
|
|
|
"react-dnd": "^15.1.2",
|
2022-04-06 09:09:00 +03:00
|
|
|
"react-dnd-html5-backend": "^15.1.3",
|
2021-07-28 16:15:52 +03:00
|
|
|
"react-dom": "^17.0.2",
|
|
|
|
"react-google-recaptcha": "^2.1.0",
|
2022-05-03 10:28:25 +03:00
|
|
|
"react-modal": "^3.15.1",
|
2022-02-22 15:48:34 +02:00
|
|
|
"sanitize-html": "^2.7.0",
|
2022-02-03 17:27:00 +02:00
|
|
|
"tippy.js": "^6.3.7",
|
2022-04-05 06:25:16 +03:00
|
|
|
"twemoji": "^14.0.2"
|
2021-07-28 16:15:52 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-06-28 13:24:07 +03:00
|
|
|
"@babel/core": "^7.18.6",
|
2022-06-28 18:01:52 +03:00
|
|
|
"@babel/preset-env": "^7.18.6",
|
2022-06-28 18:09:44 +03:00
|
|
|
"@babel/preset-react": "^7.18.6",
|
2021-08-17 12:40:44 +03:00
|
|
|
"assert": "^2.0.0",
|
2022-04-26 14:50:12 +03:00
|
|
|
"babel-loader": "^8.2.5",
|
2021-07-28 16:15:52 +03:00
|
|
|
"browserify-fs": "^1.0.0",
|
|
|
|
"buffer": "^6.0.3",
|
2022-02-03 17:12:06 +02:00
|
|
|
"clean-webpack-plugin": "^4.0.0",
|
2022-05-24 17:23:37 +03:00
|
|
|
"copy-webpack-plugin": "^11.0.0",
|
2021-07-28 16:15:52 +03:00
|
|
|
"crypto-browserify": "^3.12.0",
|
2022-03-15 07:05:21 +02:00
|
|
|
"css-loader": "^6.7.1",
|
2022-05-24 17:36:17 +03:00
|
|
|
"css-minimizer-webpack-plugin": "^4.0.0",
|
2022-07-05 07:36:53 +03:00
|
|
|
"eslint": "^8.19.0",
|
2022-02-03 16:47:48 +02:00
|
|
|
"eslint-config-airbnb": "^19.0.4",
|
2022-04-12 07:47:55 +03:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2022-06-28 13:22:31 +03:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.6.0",
|
2022-06-28 12:57:40 +03:00
|
|
|
"eslint-plugin-react": "^7.30.1",
|
2022-06-21 15:01:58 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2022-01-27 06:19:52 +02:00
|
|
|
"favicons": "^6.2.2",
|
2021-07-28 16:15:52 +03:00
|
|
|
"favicons-webpack-plugin": "^5.0.2",
|
2022-06-21 15:09:36 +03:00
|
|
|
"html-loader": "^3.1.2",
|
2021-07-28 16:15:52 +03:00
|
|
|
"html-webpack-plugin": "^5.3.1",
|
2022-06-21 15:00:23 +03:00
|
|
|
"mini-css-extract-plugin": "^2.6.1",
|
2021-07-28 16:15:52 +03:00
|
|
|
"path-browserify": "^1.0.1",
|
2022-06-28 13:23:23 +03:00
|
|
|
"sass": "^1.53.0",
|
2022-06-28 12:58:24 +03:00
|
|
|
"sass-loader": "^13.0.2",
|
2021-07-28 16:15:52 +03:00
|
|
|
"stream-browserify": "^3.0.0",
|
2022-02-22 16:32:07 +02:00
|
|
|
"style-loader": "^3.3.1",
|
2022-01-27 06:19:52 +02:00
|
|
|
"url": "^0.11.0",
|
2021-08-17 12:40:44 +03:00
|
|
|
"util": "^0.12.4",
|
2022-06-05 07:22:17 +03:00
|
|
|
"webpack": "^5.73.0",
|
2022-06-14 17:48:38 +03:00
|
|
|
"webpack-cli": "^4.10.0",
|
2022-07-05 07:38:25 +03:00
|
|
|
"webpack-dev-server": "^4.9.3",
|
2021-11-07 06:49:23 +02:00
|
|
|
"webpack-merge": "^5.7.3"
|
2021-07-28 16:15:52 +03:00
|
|
|
}
|
|
|
|
}
|