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