Newer
Older
Maxim Khlobystov
committed
"name": "bbb-html5-client",
"description": "BigBlueButton HTML5 Client",
Maxim Khlobystov
committed
"start": "if test \"$NODE_ENV\" = \"production\" ; then npm run start:prod; else npm run start:dev; fi",
Anton Georgiev
committed
"start:prod": "meteor reset && ROOT_URL=http://127.0.0.1/html5client meteor run --production --port=4100",
"start:dev": "ROOT_URL=http://127.0.0.1/html5client meteor run --port=4100",
"start:dev-fast-mongo": "env ROOT_URL=http://127.0.0.1/html5client 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 tests/puppeteer/.env | xargs) jest all.test.js --color --detectOpenHandles --forceExit",
"test:recording": "export WITH_RECORD=true;export REGRESSION_TESTING=false;env $(cat tests/puppeteer/.env | xargs) jest all.test.js --color --detectOpenHandles --forceExit",
Mohamed Amine Ben Salah
committed
"test-visual-regression": "export REGRESSION_TESTING=true;env $(cat 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 tests/puppeteer/.env | xargs) jest all.test.js --color --detectOpenHandles --forceExit",
"lint": "eslint . --ext .jsx,.js",
"preinstall": "npx npm-force-resolutions"
"meteor": {
"mainModule": {
"web.browser": "client/main.jsx",
"legacy": "client/legacy.jsx",
"server": "server/main.js"
}
},
Maxim Khlobystov
committed
"dependencies": {
"@babel/runtime": "^7.13.10",
"@browser-bunyan/server-stream": "^1.6.1",
"@jitsi/sdp-interop": "0.1.14",
"classnames": "^2.2.6",
"crypto-js": "^4.0.0",
Oswaldo Acauan
committed
"eventemitter2": "~5.0.1",
Oswaldo Acauan
committed
"immutability-helper": "~2.8.1",
"makeup-screenreader-trap": "0.0.5",
"meteor-node-stubs": "^1.0.3",
"react-color": "^2.19.3",
"react-dom": "^16.14.0",
Oswaldo Acauan
committed
"react-dropzone": "^7.0.1",
"react-intl": "^3.12.1",
Oswaldo Acauan
committed
"react-modal": "~3.6.1",
Oswaldo Acauan
committed
"reconnecting-websocket": "~v4.1.10",
"sdp-transform": "2.7.0",
"tippy.js": "^5.1.3",
Maxim Khlobystov
committed
},
"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",
Mohamed Amine Ben Salah
committed
"jest": "^26.6.3",
"postcss-modules-extract-imports": "^3.0.0",
"postcss-modules-local-by-default": "1.2.0",
"postcss-modules-scope": "1.1.0",
"postcss-modules-values": "1.3.0",
Mohamed Amine Ben Salah
committed
"puppeteer": "3.0.0",
Maxim Khlobystov
committed
},
"resolutions": {
"trim-newlines": "^4.0.1"
},
Maxim Khlobystov
committed
"cssModules": {
Oswaldo Acauan
committed
"cssClassNamingConvention": {
"template": "${name}--${shorthash.unique(scopedName)}"
},
],
"postcssPlugins": {
"postcss-modules-local-by-default": {},
"postcss-modules-extract-imports": {},
},
"repository": {
"type": "git",
"url": "https://github.com/bigbluebutton/bigbluebutton.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}