bigbluebutton-Github/bigbluebutton-html5/package.json

120 lines
4.4 KiB
JSON
Raw Normal View History

2014-10-03 01:14:41 +08:00
{
"name": "bbb-html5-client",
"description": "BigBlueButton HTML5 Client",
"license": "LGPL-3.0",
2014-10-03 01:14:41 +08:00
"scripts": {
"start": "if test \"$NODE_ENV\" = \"production\" ; then npm run start:prod; else npm run start:dev; fi",
"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",
"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",
"lint:file": "eslint",
2021-06-11 03:24:10 +08:00
"preinstall": "npx npm-force-resolutions"
},
2019-04-24 06:23:46 +08:00
"meteor": {
"mainModule": {
"web.browser": "client/main.jsx",
"legacy": "client/legacy.jsx",
"server": "server/main.js"
}
},
"lint-staged": {
"*.{js,jsx}": [
2021-05-21 02:44:17 +08:00
"eslint --fix"
]
2014-10-03 01:14:41 +08:00
},
"dependencies": {
2021-03-13 05:28:12 +08:00
"@babel/runtime": "^7.13.10",
"@browser-bunyan/server-stream": "^1.6.1",
"@jitsi/sdp-interop": "0.1.14",
2021-07-08 19:41:03 +08:00
"@material-ui/core": "^4.11.4",
2021-05-18 00:09:22 +08:00
"autoprefixer": "^10.2.5",
2021-09-23 02:17:53 +08:00
"axios": "^0.21.3",
"babel-runtime": "~6.26.0",
"bbb-diff": "^1.1.0",
2021-04-01 01:13:36 +08:00
"bowser": "^2.11.0",
2021-03-13 05:28:12 +08:00
"browser-bunyan": "^1.6.3",
"classnames": "^2.2.6",
"eventemitter2": "~5.0.1",
2021-03-13 05:28:12 +08:00
"fastdom": "^1.0.10",
"fibers": "^4.0.2",
2021-03-13 05:28:12 +08:00
"flat": "^4.1.1",
"hark": "^1.2.3",
"html-to-image": "^1.9.0",
"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",
"makeup-screenreader-trap": "0.0.5",
"meteor-node-stubs": "^1.0.3",
2021-05-18 00:09:22 +08:00
"postcss-nested": "^5.0.5",
2019-12-04 04:07:39 +08:00
"probe-image-size": "^4.1.1",
"prom-client": "^13.2.0",
2019-07-20 05:09:32 +08:00
"prop-types": "^15.7.2",
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",
2021-03-13 05:28:12 +08:00
"react": "^16.14.0",
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",
"react-dom": "^16.14.0",
2019-12-04 04:07:39 +08:00
"react-draggable": "^3.3.2",
"react-dropzone": "^7.0.1",
"react-intl": "^3.12.1",
"react-modal": "~3.6.1",
2021-03-13 05:28:12 +08:00
"react-player": "^2.9.0",
2019-02-14 03:44:21 +08:00
"react-render-in-browser": "^1.1.1",
2019-07-20 05:09:32 +08:00
"react-tabs": "^2.3.1",
"react-tether": "^2.0.7",
2019-02-14 03:44:21 +08:00
"react-toastify": "^4.5.2",
"react-toggle": "~4.0.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",
"reconnecting-websocket": "~v4.4.0",
2021-05-15 00:36:57 +08:00
"redis": "^3.1.2",
"sanitize-html": "2.3.3",
"scheduler": "^0.20.2",
"sdp-transform": "2.7.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",
"tippy.js": "^5.1.3",
"use-context-selector": "^1.3.7",
"useragent": "^2.3.0",
2021-07-20 21:41:14 +08:00
"wasm-check": "^2.0.2",
2020-07-17 23:32:11 +08:00
"winston": "^3.3.3",
2019-12-04 04:07:39 +08:00
"yaml": "^1.7.2"
},
2014-10-03 01:14:41 +08:00
"devDependencies": {
2018-12-10 09:08:16 +08:00
"chai": "~4.2.0",
2021-04-10 02:02:18 +08:00
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.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-05-18 00:09:22 +08:00
"postcss": "^8.2.15",
2021-05-17 20:25:54 +08:00
"postcss-modules-extract-imports": "^3.0.0",
2022-01-25 03:32:58 +08:00
"postcss-modules-local-by-default": "^4.0.0",
"postcss-modules-scope": "^3.0.0",
"postcss-modules-values": "^4.0.0",
2021-10-28 21:58:11 +08:00
"sha1": "^1.1.1"
},
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
}