{ "name": "@chatwoot/chatwoot", "version": "0.1.0", "license": "MIT", "scripts": { "eslint": "eslint app/javascript --fix", "pretest": "rimraf .jest-cache", "test": "jest --no-cache", "test:watch": "jest --watch --no-cache", "test:coverage": "jest --no-cache --collectCoverage", "webpacker-start": "webpack-dev-server -d --config webpack.dev.config.js --content-base public/ --progress --colors", "start:dev": "foreman start -f ./Procfile.dev" }, "dependencies": { "@babel/polyfill": "^7.6.0", "@babel/preset-env": "~7.3.4", "@rails/actioncable": "^6.0.0", "@rails/webpacker": "^4.0.7", "axios": "^0.19.0", "babel-helper-vue-jsx-merge-props": "^2.0.3", "babel-plugin-syntax-jsx": "^6.18.0", "babel-plugin-transform-vue-jsx": "^3.7.0", "bourbon": "^6.0.0", "chart.js": "~2.5.0", "copy-text-to-clipboard": "^2.1.1", "dotenv": "^8.0.0", "emojione": "~2.2.7", "foundation-sites": "~6.5.3", "highlight.js": "^9.15.10", "ionicons": "~2.0.1", "js-cookie": "^2.2.1", "lodash.groupby": "^4.6.0", "moment": "~2.19.3", "query-string": "5", "spinkit": "~1.2.5", "tween.js": "~16.6.0", "url-loader": "^2.0.0", "v-tooltip": "~2.0.2", "vue": "^2.6.0", "vue-aplayer": "~0.1.1", "vue-audio": "~0.0.7", "vue-axios": "~1.2.2", "vue-chartjs": "^3.4.2", "vue-clickaway": "~2.1.0", "vue-color": "^2.7.0", "vue-highlight.js": "^3.1.0", "vue-i18n": "~5.0.3", "vue-loader": "^15.7.0", "vue-multiselect": "~2.1.6", "vue-router": "~2.2.0", "vue-select": "~2.0.0", "vue-template-compiler": "^2.6.10", "vuelidate": "~0.2.0", "vuex": "~2.1.1", "vuex-router-sync": "~4.1.2" }, "devDependencies": { "@vue/babel-preset-app": "^3.11.0", "@vue/test-utils": "^1.0.0-beta.29", "babel-core": "^7.0.0-bridge.0", "babel-eslint": "^10.0.1", "babel-jest": "^24.9.0", "eslint": "^5.13.0", "eslint-config-airbnb": "^17.1.0", "eslint-config-prettier": "^4.0.0", "eslint-import-resolver-webpack": "^0.11.1", "eslint-plugin-babel": "^5.3.0", "eslint-plugin-html": "^6.0.0", "eslint-plugin-import": "^2.16.0", "eslint-plugin-jsx-a11y": "^6.2.1", "eslint-plugin-prettier": "^3.0.1", "eslint-plugin-vue": "^5.2.3", "expect-more-jest": "^2.4.2", "husky": ">=1", "jest": "^24.8.0", "jest-serializer-vue": "^2.0.2", "jest-transform-stub": "^2.0.0", "lint-staged": ">=8", "prettier": "^1.16.4", "rimraf": "^3.0.0", "vue-jest": "^3.0.5", "webpack-dev-server": "^3.7.2" }, "engines": { "node": ">=10.x", "npm": ">=6.x", "yarn": ">=1.x" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "jest": { "collectCoverage": true, "coverageReporters": [ "lcov", "text" ] }, "lint-staged": { "*.{js,vue}": [ "eslint --fix", "git add" ], "*.rb": [ "rubocop -a", "git add" ], "*.scss": [ "scss-lint" ] } }