2014-10-03 01:14:41 +08:00
|
|
|
{
|
2016-03-10 09:30:36 +08:00
|
|
|
"name": "bbb-html5-client",
|
|
|
|
"description": "BigBlueButton HTML5 Client",
|
2020-03-07 00:27:45 +08:00
|
|
|
"license": "LGPL-3.0",
|
2014-10-03 01:14:41 +08:00
|
|
|
"scripts": {
|
2017-06-15 12:20:52 +08:00
|
|
|
"start": "if test \"$NODE_ENV\" = \"production\" ; then npm run start:prod; else npm run start:dev; fi",
|
2021-10-06 01:39:06 +08:00
|
|
|
"start:prod": "if test -z \"$ROOT_URL\" ; then export ROOT_URL=http://127.0.0.1/html5client; fi; meteor reset && meteor run --production --port=4100",
|
|
|
|
"start:dev": "if test -z \"$ROOT_URL\" ; then export ROOT_URL=http://127.0.0.1/html5client; fi;meteor run --port=4100",
|
|
|
|
"start:dev-fast-mongo": "if test -z \"$ROOT_URL\" ; then export ROOT_URL=http://127.0.0.1/html5client; fi; env MONGO_OPLOG_URL=mongodb://127.0.1.1/local MONGO_URL=mongodb://127.0.1.1/meteor ROOT_URL=http://127.0.0.1/html5client NODE_ENV=development meteor run --port=4100",
|
2021-08-02 05:24:17 +08:00
|
|
|
"test": "export WITH_RECORD=false;export REGRESSION_TESTING=false;env $(cat ../bigbluebutton-tests/puppeteer/.env | xargs) jest all.test.js --color --detectOpenHandles --forceExit",
|
|
|
|
"test:recording": "export WITH_RECORD=true;export REGRESSION_TESTING=false;env $(cat ../bigbluebutton-tests/puppeteer/.env | xargs) jest all.test.js --color --detectOpenHandles --forceExit",
|
|
|
|
"test-visual-regression": "export REGRESSION_TESTING=true;env $(cat ../bigbluebutton-tests/puppeteer/.env | xargs) jest all.test.js --color --detectOpenHandles --forceExit",
|
|
|
|
"test-visual-regression:recording": "export WITH_RECORD=true;export REGRESSION_TESTING=true;env $(cat ../bigbluebutton-tests/puppeteer/.env | xargs) jest all.test.js --color --detectOpenHandles --forceExit",
|
2021-06-11 03:24:10 +08:00
|
|
|
"lint": "eslint . --ext .jsx,.js",
|
2021-12-09 07:36:39 +08:00
|
|
|
"lint:file": "eslint",
|
2023-01-10 21:21:01 +08:00
|
|
|
"preinstall": "npx npm-force-resolutions",
|
|
|
|
"postinstall": "mkdir -p public/files; cp node_modules/@fontsource/*/files/*.woff public/files/; cp node_modules/@fontsource/*/files/*.woff2 public/files/"
|
2017-06-06 02:05:46 +08:00
|
|
|
},
|
2019-04-24 06:23:46 +08:00
|
|
|
"meteor": {
|
|
|
|
"mainModule": {
|
|
|
|
"web.browser": "client/main.jsx",
|
|
|
|
"legacy": "client/legacy.jsx",
|
|
|
|
"server": "server/main.js"
|
|
|
|
}
|
|
|
|
},
|
2017-06-06 02:05:46 +08:00
|
|
|
"lint-staged": {
|
2021-05-08 05:28:04 +08:00
|
|
|
"*.{js,jsx}": [
|
2021-05-21 02:44:17 +08:00
|
|
|
"eslint --fix"
|
2021-05-08 05:28:04 +08:00
|
|
|
]
|
2014-10-03 01:14:41 +08:00
|
|
|
},
|
2016-03-10 09:30:36 +08:00
|
|
|
"dependencies": {
|
2022-04-22 02:28:01 +08:00
|
|
|
"@babel/runtime": "^7.17.9",
|
|
|
|
"@browser-bunyan/server-stream": "^1.8.0",
|
2019-06-22 02:21:22 +08:00
|
|
|
"@jitsi/sdp-interop": "0.1.14",
|
2022-04-22 02:28:01 +08:00
|
|
|
"@material-ui/core": "^4.12.4",
|
2022-06-04 01:00:44 +08:00
|
|
|
"@mconf/bbb-diff": "^1.2.0",
|
2023-01-27 20:25:45 +08:00
|
|
|
"@tldraw/tldraw": "^1.27.0",
|
2022-04-22 02:28:01 +08:00
|
|
|
"autoprefixer": "^10.4.4",
|
2021-09-23 02:17:53 +08:00
|
|
|
"axios": "^0.21.3",
|
2018-04-24 09:56:49 +08:00
|
|
|
"babel-runtime": "~6.26.0",
|
2021-04-01 01:13:36 +08:00
|
|
|
"bowser": "^2.11.0",
|
2022-04-22 02:28:01 +08:00
|
|
|
"browser-bunyan": "^1.8.0",
|
2018-09-08 03:32:53 +08:00
|
|
|
"classnames": "^2.2.6",
|
2022-04-09 03:05:29 +08:00
|
|
|
"darkreader": "^4.9.46",
|
2022-05-20 04:39:54 +08:00
|
|
|
"emoji-mart": "^3.0.1",
|
2022-07-12 21:24:44 +08:00
|
|
|
"eventemitter2": "~6.4.6",
|
2021-03-13 05:28:12 +08:00
|
|
|
"fastdom": "^1.0.10",
|
2020-01-07 22:58:15 +08:00
|
|
|
"fibers": "^4.0.2",
|
2023-01-07 01:10:55 +08:00
|
|
|
"flat": "^5.0.2",
|
2020-06-16 21:41:51 +08:00
|
|
|
"hark": "^1.2.3",
|
2022-02-19 04:45:16 +08:00
|
|
|
"html-to-image": "^1.9.0",
|
2018-11-06 22:59:53 +08:00
|
|
|
"immutability-helper": "~2.8.1",
|
2017-12-21 00:10:01 +08:00
|
|
|
"langmap": "0.0.16",
|
2021-03-13 05:28:12 +08:00
|
|
|
"lodash": "^4.17.21",
|
2018-04-24 09:56:49 +08:00
|
|
|
"makeup-screenreader-trap": "0.0.5",
|
2022-04-22 02:28:01 +08:00
|
|
|
"meteor-node-stubs": "^1.2.1",
|
2022-04-05 22:49:13 +08:00
|
|
|
"mobx": "6.4.2",
|
2023-01-27 20:25:45 +08:00
|
|
|
"postcss-nested": "^5.0.6",
|
2022-12-14 20:15:20 +08:00
|
|
|
"probe-image-size": "^7.2.3",
|
2021-10-07 02:55:19 +08:00
|
|
|
"prom-client": "^13.2.0",
|
2022-04-22 02:28:01 +08:00
|
|
|
"prop-types": "^15.8.1",
|
2021-05-25 03:41:22 +08:00
|
|
|
"queue": "^6.0.2",
|
2019-02-14 03:44:21 +08:00
|
|
|
"re-resizable": "^4.11.0",
|
2022-05-12 00:42:18 +08:00
|
|
|
"react": "^17.0.2",
|
2018-12-10 09:08:16 +08:00
|
|
|
"react-autosize-textarea": "^5.0.1",
|
2021-03-13 05:28:12 +08:00
|
|
|
"react-color": "^2.19.3",
|
2022-05-12 00:42:18 +08:00
|
|
|
"react-dom": "^17.0.2",
|
2022-07-30 01:47:24 +08:00
|
|
|
"react-draggable": "^4.4.5",
|
2018-11-06 22:59:53 +08:00
|
|
|
"react-dropzone": "^7.0.1",
|
2022-08-30 04:25:43 +08:00
|
|
|
"react-intl": "^6.1.0",
|
2022-03-17 01:53:41 +08:00
|
|
|
"react-loading-skeleton": "^3.0.3",
|
2022-05-12 02:51:52 +08:00
|
|
|
"react-modal": "^3.15.1",
|
2022-04-22 02:28:01 +08:00
|
|
|
"react-player": "^2.10.0",
|
2022-05-12 02:56:04 +08:00
|
|
|
"react-tabs": "^4.2.1",
|
2020-03-25 19:30:08 +08:00
|
|
|
"react-tether": "^2.0.7",
|
2019-02-14 03:44:21 +08:00
|
|
|
"react-toastify": "^4.5.2",
|
2022-05-12 03:06:05 +08:00
|
|
|
"react-toggle": "^4.1.2",
|
2019-07-20 05:09:32 +08:00
|
|
|
"react-transition-group": "^2.9.0",
|
2021-03-13 05:28:12 +08:00
|
|
|
"react-virtualized": "^9.22.3",
|
2021-07-07 03:09:02 +08:00
|
|
|
"reconnecting-websocket": "~v4.4.0",
|
2021-05-15 00:36:57 +08:00
|
|
|
"redis": "^3.1.2",
|
2022-12-20 22:06:39 +08:00
|
|
|
"sanitize-html": "2.7.1",
|
2021-09-09 21:51:18 +08:00
|
|
|
"scheduler": "^0.20.2",
|
2019-05-22 00:48:01 +08:00
|
|
|
"sdp-transform": "2.7.0",
|
2022-05-10 20:47:51 +08:00
|
|
|
"smile2emoji": "^2.8.0",
|
2017-10-24 08:09:40 +08:00
|
|
|
"string-hash": "~1.1.3",
|
2021-10-20 20:45:44 +08:00
|
|
|
"styled-components": "^5.3.3",
|
2020-01-10 03:30:45 +08:00
|
|
|
"tippy.js": "^5.1.3",
|
2021-09-09 21:51:18 +08:00
|
|
|
"use-context-selector": "^1.3.7",
|
2022-04-22 02:28:01 +08:00
|
|
|
"wasm-check": "^2.0.3",
|
2022-04-26 01:02:53 +08:00
|
|
|
"webrtc-adapter": "^8.1.1",
|
2022-04-22 02:28:01 +08:00
|
|
|
"winston": "^3.7.2",
|
2019-12-04 04:07:39 +08:00
|
|
|
"yaml": "^1.7.2"
|
2016-03-10 09:30:36 +08:00
|
|
|
},
|
2014-10-03 01:14:41 +08:00
|
|
|
"devDependencies": {
|
2018-12-10 09:08:16 +08:00
|
|
|
"chai": "~4.2.0",
|
2022-04-22 02:28:01 +08:00
|
|
|
"eslint": "^7.32.0",
|
2021-04-10 02:02:18 +08:00
|
|
|
"eslint-config-airbnb": "^18.2.1",
|
|
|
|
"eslint-config-airbnb-base": "^14.2.1",
|
2022-04-22 02:28:01 +08:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
|
|
"eslint-plugin-react": "^7.29.4",
|
|
|
|
"eslint-plugin-react-hooks": "^4.4.0",
|
2019-02-14 03:44:21 +08:00
|
|
|
"husky": "^1.3.1",
|
2022-03-04 20:42:35 +08:00
|
|
|
"lint-staged": "11.2.0",
|
2021-10-28 21:58:11 +08:00
|
|
|
"sha1": "^1.1.1"
|
2016-04-28 02:30:45 +08:00
|
|
|
},
|
2021-06-11 03:24:10 +08:00
|
|
|
"resolutions": {
|
|
|
|
"trim-newlines": "^4.0.1"
|
|
|
|
},
|
2018-10-26 22:35:42 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/bigbluebutton/bigbluebutton.git"
|
2018-11-07 02:49:27 +08:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
2014-10-03 01:14:41 +08:00
|
|
|
}
|
2021-05-15 00:36:57 +08:00
|
|
|
}
|