79 lines
2.3 KiB
JSON
79 lines
2.3 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",
|
|
"start:prod": "meteor reset && ROOT_URL=http://127.0.0.1/html5client NODE_ENV=production meteor --production",
|
|
"start:dev": "ROOT_URL=http://127.0.0.1/html5client NODE_ENV=development meteor",
|
|
"test": "wdio ./tests/webdriverio/wdio.conf.js",
|
|
"lint": "eslint . --ext .jsx,.js",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"gitDir": "../",
|
|
"*.{js,jsx}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "^6.23.0",
|
|
"classnames": "^2.2.5",
|
|
"eventemitter2": "^2.1.3",
|
|
"flat": "^2.0.1",
|
|
"hiredis": "^0.5.0",
|
|
"history": "~3.3.0",
|
|
"lodash": "~4.17.4",
|
|
"meteor-node-stubs": "^0.2.11",
|
|
"node-sass": "~3.8.0",
|
|
"probe-image-size": "~3.0.0",
|
|
"prop-types": "~15.5.10",
|
|
"react": "~15.5.4",
|
|
"react-autosize-textarea": "~0.4.3",
|
|
"react-color": "^2.12.0",
|
|
"react-dom": "~15.5.4",
|
|
"react-intl": "~2.3.0",
|
|
"react-modal": "~1.7.7",
|
|
"react-router": "~3.0.2",
|
|
"react-tabs": "~1.0.0",
|
|
"react-toggle": "~4.0.1",
|
|
"react-transition-group": "~1.1.3",
|
|
"redis": "^2.6.2",
|
|
"winston": "^2.3.1",
|
|
"xml2js": "^0.4.17"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^7.1.1",
|
|
"chai": "^3.5.0",
|
|
"eslint": "~3.19.0",
|
|
"eslint-config-airbnb": "^15.0.1",
|
|
"eslint-config-airbnb-base": "~11.2.0",
|
|
"eslint-plugin-import": "~2.3.0",
|
|
"eslint-plugin-jsx-a11y": "^5.0.3",
|
|
"eslint-plugin-react": "^7.0.1",
|
|
"husky": "^0.13.4",
|
|
"lint-staged": "^3.6.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.0.2",
|
|
"wdio-jasmine-framework": "^0.3.1",
|
|
"wdio-junit-reporter": "^0.3.0",
|
|
"wdio-spec-reporter": "^0.1.0",
|
|
"webdriverio": "^4.8.0"
|
|
},
|
|
"cssModules": {
|
|
"extensions": [
|
|
"scss"
|
|
],
|
|
"postcssPlugins": {
|
|
"postcss-nested": {},
|
|
"postcss-modules-local-by-default": {},
|
|
"postcss-modules-extract-imports": {},
|
|
"postcss-modules-scope": {},
|
|
"autoprefixer": {}
|
|
}
|
|
}
|
|
}
|