105 lines
3.9 KiB
JSON
105 lines
3.9 KiB
JSON
{
|
|
"name": "bbb-html5-client",
|
|
"description": "BigBlueButton HTML5 Client",
|
|
"scripts": {
|
|
"start": "if test \"$NODE_ENV\" = \"production\" ; then npm run start:prod; else npm run start:dev; fi",
|
|
"test-visual-regression": "export BROWSER_NAME=firefox; wdio ./tests/webdriverio/wdio.vreg.conf.js; export BROWSER_NAME=chrome; wdio ./tests/webdriverio/wdio.vreg.conf.js; export BROWSER_NAME=chrome_mobile; DEVICE_NAME='iPhone 6 Plus'; export DEVICE_NAME; wdio ./tests/webdriverio/wdio.vreg.conf.js; DEVICE_NAME='Nexus 5X'; export DEVICE_NAME; wdio ./tests/webdriverio/wdio.vreg.conf.js",
|
|
"generate-refs-visual-regression": "rm -rf tests/webdriverio/screenshots; npm run test-visual-regression",
|
|
"test-visual-regression-desktop": "export BROWSER_NAME=firefox; wdio ./tests/webdriverio/wdio.vreg.conf.js; export BROWSER_NAME=chrome; wdio ./tests/webdriverio/wdio.vreg.conf.js",
|
|
"generate-refs-visual-regression-desktop": "rm -rf tests/webdriverio/screenshots; npm run test-visual-regression-desktop",
|
|
"start:prod": "meteor reset && ROOT_URL=http://127.0.0.1/html5client NODE_ENV=production meteor --production --settings private/config/settings-production.json",
|
|
"start:dev": "ROOT_URL=http://127.0.0.1/html5client NODE_ENV=development meteor --settings private/config/settings-development.json",
|
|
"test": "wdio ./tests/webdriverio/wdio.conf.js",
|
|
"lint": "eslint . --ext .jsx,.js",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"gitDir": "../",
|
|
"linters": {
|
|
"*.{js,jsx}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"//": [
|
|
"core-js is included with babel-runtime",
|
|
"but Meteor 1.6.0.1 doesn't see it there for some reason",
|
|
"need to investigate"
|
|
],
|
|
"babel-runtime": "~6.26.0",
|
|
"browser-detect": "^0.2.27",
|
|
"classnames": "~2.2.5",
|
|
"clipboard": "~1.7.1",
|
|
"core-js": "~2.5.3",
|
|
"eventemitter2": "~4.1.2",
|
|
"flat": "~4.0.0",
|
|
"hiredis": "~0.5.0",
|
|
"history": "~3.3.0",
|
|
"immutability-helper": "~2.4.0",
|
|
"langmap": "0.0.16",
|
|
"lodash": "~4.17.4",
|
|
"makeup-screenreader-trap": "0.0.5",
|
|
"meteor-node-stubs": "~0.3.2",
|
|
"node-sass": "~4.5.3",
|
|
"probe-image-size": "~3.1.0",
|
|
"prop-types": "~15.6.0",
|
|
"re-resizable": "^4.4.8",
|
|
"react": "~16.0.0",
|
|
"react-autosize-textarea": "~0.4.9",
|
|
"react-color": "~2.13.8",
|
|
"react-dom": "~16.0.0",
|
|
"react-dropzone": "~4.2.1",
|
|
"react-intl": "~2.4.0",
|
|
"react-modal": "~3.0.4",
|
|
"react-router": "~3.0.2",
|
|
"react-tabs": "~2.1.0",
|
|
"react-toastify": "~2.1.2",
|
|
"react-toggle": "~4.0.2",
|
|
"react-transition-group": "~2.2.1",
|
|
"redis": "~2.8.0",
|
|
"string-hash": "~1.1.3",
|
|
"tippy.js": "~2.0.2",
|
|
"winston": "~2.4.0",
|
|
"winston-daily-rotate-file": "^1.7.2",
|
|
"xml2js": "~0.4.19"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "~7.1.6",
|
|
"babel-plugin-react-remove-properties": "~0.2.5",
|
|
"chai": "~4.1.2",
|
|
"eslint": "~4.9.0",
|
|
"eslint-config-airbnb": "~16.1.0",
|
|
"eslint-config-airbnb-base": "~12.1.0",
|
|
"eslint-plugin-import": "~2.8.0",
|
|
"eslint-plugin-jsx-a11y": "~6.0.2",
|
|
"eslint-plugin-react": "~7.4.0",
|
|
"husky": "~0.14.3",
|
|
"lint-staged": "~4.3.0",
|
|
"postcss-modules-extract-imports": "1.1.0",
|
|
"postcss-modules-local-by-default": "1.2.0",
|
|
"postcss-modules-scope": "1.1.0",
|
|
"postcss-modules-values": "1.3.0",
|
|
"postcss-nested": "2.1.2",
|
|
"wdio-jasmine-framework": "~0.3.2",
|
|
"wdio-junit-reporter": "~0.3.1",
|
|
"wdio-spec-reporter": "~0.1.2",
|
|
"wdio-visual-regression-service": "~0.8.0",
|
|
"webdriver-manager": "~12.0.6",
|
|
"webdriverio": "~4.8.0"
|
|
},
|
|
"cssModules": {
|
|
"extensions": [
|
|
"scss"
|
|
],
|
|
"postcssPlugins": {
|
|
"postcss-nested": {},
|
|
"postcss-modules-local-by-default": {},
|
|
"postcss-modules-extract-imports": {},
|
|
"postcss-modules-scope": {},
|
|
"autoprefixer": {}
|
|
}
|
|
}
|
|
}
|