{ "name": "@chatwoot/chatwoot", "version": "0.1.0", "license": "MIT", "scripts": { "eslint": "eslint app/javascript --fix", "pretest": "rimraf .jest-cache", "test": "jest -w 1 --no-cache", "test:watch": "jest -w 1 --watch --no-cache", "test:coverage": "jest -w 1 --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": { "@rails/actioncable": "^6.0.0", "@rails/webpacker": "^4.2.2", "axios": "^0.19.0", "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", "core-js": "3", "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.1", "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", "vue-upload-component": "^2.8.20", "vuelidate": "~0.7.5", "vuex": "~2.1.1", "vuex-router-sync": "~4.1.2" }, "devDependencies": { "@babel/core": "^7.9.0", "@babel/plugin-proposal-class-properties": "^7.8.3", "@babel/preset-env": "^7.9.5", "@vue/test-utils": "^1.0.0-beta.29", "babel-core": "^7.0.0-bridge.0", "babel-eslint": "^10.1.0", "babel-helper-vue-jsx-merge-props": "^2.0.3", "babel-jest": "^25.3.0", "babel-loader": "^8.1.0", "cypress": "^4.10.0", "eslint": "^6.8.0", "eslint-config-airbnb-base": "^14.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": "^6.2.2", "expect-more-jest": "^2.4.2", "husky": ">=1", "jest": "^25.1.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.10.3" }, "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" ], "!(*schema).rb": [ "rubocop -a", "git add" ], "*.scss": [ "scss-lint" ] } }