2021-07-28 15:15:52 +02:00
|
|
|
{
|
|
|
|
"name": "cinny",
|
2022-05-15 07:09:42 +02:00
|
|
|
"version": "2.0.3",
|
2021-08-01 16:58:34 +02:00
|
|
|
"description": "Yet another matrix client",
|
2021-07-28 15:15:52 +02:00
|
|
|
"main": "index.js",
|
|
|
|
"engines": {
|
2021-07-29 07:07:31 +02:00
|
|
|
"npm": ">=6.14.11",
|
2021-11-06 13:39:29 +01:00
|
|
|
"node": ">=14.6.0"
|
2021-07-28 15:15:52 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "webpack serve --config ./webpack.dev.js --open",
|
2021-11-07 11:16:36 +01:00
|
|
|
"build": "webpack --config ./webpack.prod.js"
|
2021-07-28 15:15:52 +02:00
|
|
|
},
|
|
|
|
"keywords": [],
|
2021-07-31 04:51:57 +02:00
|
|
|
"author": "Ajay Bura",
|
2021-08-03 05:17:11 +02:00
|
|
|
"license": "MIT",
|
2021-07-28 15:15:52 +02:00
|
|
|
"dependencies": {
|
2022-05-03 09:30:30 +02:00
|
|
|
"@fontsource/inter": "^4.5.10",
|
2022-05-20 05:54:28 +02:00
|
|
|
"@fontsource/roboto": "^4.5.7",
|
2021-12-13 16:37:15 +01: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 15:26:47 +01:00
|
|
|
"@tippyjs/react": "^4.2.6",
|
2021-07-28 15:15:52 +02:00
|
|
|
"babel-polyfill": "^6.26.0",
|
|
|
|
"browser-encrypt-attachment": "^0.3.0",
|
2022-02-22 15:21:31 +01:00
|
|
|
"dateformat": "^5.0.3",
|
2022-02-22 15:10:53 +01:00
|
|
|
"emojibase-data": "^7.0.1",
|
2021-12-06 05:52:45 +01:00
|
|
|
"file-saver": "^2.0.5",
|
2022-01-27 05:19:52 +01:00
|
|
|
"flux": "^4.0.3",
|
2021-11-06 10:45:35 +01:00
|
|
|
"formik": "^2.2.9",
|
2022-04-26 13:52:35 +02:00
|
|
|
"html-react-parser": "^1.4.12",
|
2022-04-26 13:47:05 +02:00
|
|
|
"katex": "^0.15.3",
|
2021-11-21 14:51:03 +01:00
|
|
|
"linkifyjs": "^2.1.9",
|
2022-05-20 05:50:01 +02:00
|
|
|
"matrix-js-sdk": "^17.2.0",
|
2022-02-22 15:25:52 +01:00
|
|
|
"micromark": "^3.0.10",
|
2022-02-03 15:43:29 +01:00
|
|
|
"micromark-extension-gfm": "^2.0.1",
|
2022-04-24 17:48:35 +02:00
|
|
|
"micromark-extension-math": "^2.0.2",
|
2022-01-31 16:58:42 +01:00
|
|
|
"micromark-util-chunked": "^1.0.0",
|
|
|
|
"micromark-util-resolve-all": "^1.0.0",
|
|
|
|
"micromark-util-symbol": "^1.0.1",
|
2022-01-31 05:04:14 +01:00
|
|
|
"prop-types": "^15.8.1",
|
2021-07-28 15:15:52 +02:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-autosize-textarea": "^7.1.0",
|
2022-04-05 05:37:23 +02:00
|
|
|
"react-dnd": "^15.1.2",
|
2022-04-06 08:09:00 +02:00
|
|
|
"react-dnd-html5-backend": "^15.1.3",
|
2021-07-28 15:15:52 +02:00
|
|
|
"react-dom": "^17.0.2",
|
|
|
|
"react-google-recaptcha": "^2.1.0",
|
2022-05-03 09:28:25 +02:00
|
|
|
"react-modal": "^3.15.1",
|
2022-02-22 14:48:34 +01:00
|
|
|
"sanitize-html": "^2.7.0",
|
2022-02-03 16:27:00 +01:00
|
|
|
"tippy.js": "^6.3.7",
|
2022-04-05 05:25:16 +02:00
|
|
|
"twemoji": "^14.0.2"
|
2021-07-28 15:15:52 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-20 06:31:37 +02:00
|
|
|
"@babel/core": "^7.18.0",
|
2022-05-03 09:32:49 +02:00
|
|
|
"@babel/preset-env": "^7.17.10",
|
2022-05-20 05:50:54 +02:00
|
|
|
"@babel/preset-react": "^7.17.12",
|
2021-08-17 11:40:44 +02:00
|
|
|
"assert": "^2.0.0",
|
2022-04-26 13:50:12 +02:00
|
|
|
"babel-loader": "^8.2.5",
|
2021-07-28 15:15:52 +02:00
|
|
|
"browserify-fs": "^1.0.0",
|
|
|
|
"buffer": "^6.0.3",
|
2022-02-03 16:12:06 +01:00
|
|
|
"clean-webpack-plugin": "^4.0.0",
|
2022-02-22 14:44:42 +01:00
|
|
|
"copy-webpack-plugin": "^10.2.4",
|
2021-07-28 15:15:52 +02:00
|
|
|
"crypto-browserify": "^3.12.0",
|
2022-03-15 06:05:21 +01:00
|
|
|
"css-loader": "^6.7.1",
|
2022-02-22 14:40:47 +01:00
|
|
|
"css-minimizer-webpack-plugin": "^3.4.1",
|
2022-05-20 05:55:57 +02:00
|
|
|
"eslint": "^8.15.0",
|
2022-02-03 15:47:48 +01:00
|
|
|
"eslint-config-airbnb": "^19.0.4",
|
2022-04-12 06:47:55 +02:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2021-07-28 15:15:52 +02:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
2022-03-15 06:05:45 +01:00
|
|
|
"eslint-plugin-react": "^7.29.4",
|
2022-05-03 09:24:22 +02:00
|
|
|
"eslint-plugin-react-hooks": "^4.5.0",
|
2022-01-27 05:19:52 +01:00
|
|
|
"favicons": "^6.2.2",
|
2021-07-28 15:15:52 +02:00
|
|
|
"favicons-webpack-plugin": "^5.0.2",
|
2022-02-22 14:27:51 +01:00
|
|
|
"html-loader": "^3.1.0",
|
2021-07-28 15:15:52 +02:00
|
|
|
"html-webpack-plugin": "^5.3.1",
|
2022-03-08 12:16:48 +01:00
|
|
|
"mini-css-extract-plugin": "^2.6.0",
|
2021-07-28 15:15:52 +02:00
|
|
|
"path-browserify": "^1.0.1",
|
2022-05-03 12:32:14 +02:00
|
|
|
"sass": "^1.51.0",
|
2022-02-22 14:25:19 +01:00
|
|
|
"sass-loader": "^12.6.0",
|
2021-07-28 15:15:52 +02:00
|
|
|
"stream-browserify": "^3.0.0",
|
2022-02-22 15:32:07 +01:00
|
|
|
"style-loader": "^3.3.1",
|
2022-01-27 05:19:52 +01:00
|
|
|
"url": "^0.11.0",
|
2021-08-17 11:40:44 +02:00
|
|
|
"util": "^0.12.4",
|
2022-05-20 05:47:47 +02:00
|
|
|
"webpack": "^5.72.1",
|
2022-02-03 16:11:25 +01:00
|
|
|
"webpack-cli": "^4.9.2",
|
2022-05-05 07:17:11 +02:00
|
|
|
"webpack-dev-server": "^4.9.0",
|
2021-11-07 05:49:23 +01:00
|
|
|
"webpack-merge": "^5.7.3"
|
2021-07-28 15:15:52 +02:00
|
|
|
}
|
|
|
|
}
|