{
   "name": "slack-bot-test",
   "version": "1.0.0",
   "description": "Support bot app",
   "main": "build/main/index.js",
   "typings": "build/main/index.d.ts",
   "module": "build/module/index.js",
   "repository": "https://github.com/YOUR_GITHUB_USER_NAME/slack-bot-test",
   "license": "MIT",
   "keywords": [],
   "scripts": {
      "test": "jest",
      "start": "ts-node src/index.ts",
      "prod": "cross-env NODE_ENV=production webpack --watch",
      "dev": "webpack --watch",
      "build": "npm run build:dev",
      "build:dev": "webpack --config ./webpack.config.js --progress --profile --color --display-error-details --display-cached && npm run copy-files",
      "build:prod": "cross-env NODE_ENV=production webpack --config ./webpack.config.js  --progress --profile --color --display-error-details --display-cached --bail && npm run copy-files",
      "copy-files": "node build/copyFiles.js",
      "clean": "npm cache clear && rimraf -- dist"
   },
   "engines": {
      "node": ">=10"
   },
   "dependencies": {
      "@bitauth/libauth": "^1.17.1",
      "@slack/bolt": "^3.2.0",
      "@slack/web-api": "^6.0.0",
      "aws-sdk": "^2.865.0",
      "body-parser": "^1.19.0",
      "compression": "^1.7.4",
      "config": "^3.3.4",
      "cors": "^2.8.5",
      "errorhandler": "^1.5.1",
      "express": "^4.17.1",
      "express-formidable": "^1.2.0",
      "express-status-monitor": "^1.3.3",
      "googleapis": "^39.2.0",
      "helmet": "^4.4.1",
      "json2typescript": "^1.4.1",
      "morgan": "^1.10.0",
      "multiparty": "^4.2.2",
      "mysql": "^2.14.1",
      "reflect-metadata": "^0.1.10",
      "socket.io": "^2.3.0",
      "ts-loader": "^8.0.17",
      "typeorm": "0.2.31",
      "uuid": "^3.4.0",
      "webpack": "^5.24.3",
      "webpack-merge": "^5.7.3"
   },
   "devDependencies": {
      "@ava/typescript": "^1.1.1",
      "@istanbuljs/nyc-config-typescript": "^1.0.1",
      "@types/body-parser": "^1.19.0",
      "@types/compression": "^1.7.0",
      "@types/config": "^0.0.38",
      "@types/cors": "^2.8.10",
      "@types/errorhandler": "^1.5.0",
      "@types/express": "^4.17.11",
      "@types/express-formidable": "^1.0.4",
      "@types/express-status-monitor": "^1.2.2",
      "@types/helmet": "^4.0.0",
      "@types/morgan": "^1.9.2",
      "@types/multiparty": "^0.0.32",
      "@types/node": "^8.0.29",
      "@types/socket.io": "^2.1.13",
      "@types/uuid": "^8.3.0",
      "@typescript-eslint/eslint-plugin": "^4.0.1",
      "@typescript-eslint/parser": "^4.0.1",
      "ava": "^3.12.1",
      "codecov": "^3.5.0",
      "cspell": "^4.1.0",
      "cz-conventional-changelog": "^3.3.0",
      "eslint": "^7.8.0",
      "eslint-config-prettier": "^6.11.0",
      "eslint-plugin-eslint-comments": "^3.2.0",
      "eslint-plugin-import": "^2.22.0",
      "gh-pages": "^3.1.0",
      "nodemon-webpack-plugin": "^4.4.4",
      "npm-run-all": "^4.1.5",
      "nyc": "^15.1.0",
      "open-cli": "^6.0.1",
      "prettier": "^2.1.1",
      "standard-version": "^9.0.0",
      "ts-node": "3.3.0",
      "typedoc": "^0.19.0",
      "typescript": "^4.0.2",
      "webpack-cli": "^4.5.0"
   },
   "files": [
      "build/main",
      "build/module",
      "!**/*.spec.*",
      "!**/*.json",
      "CHANGELOG.md",
      "LICENSE",
      "README.md"
   ],
   "ava": {
      "failFast": true,
      "timeout": "60s",
      "typescript": {
         "rewritePaths": {
            "src/": "build/main/"
         }
      },
      "files": [
         "!build/module/**"
      ]
   },
   "config": {
      "commitizen": {
         "path": "cz-conventional-changelog"
      }
   },
   "prettier": {
      "singleQuote": true
   },
   "nyc": {
      "extends": "@istanbuljs/nyc-config-typescript",
      "exclude": [
         "**/*.spec.js"
      ]
   }
}
