package.json 834 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@growi/slack",
  3. "version": "5.1.7",
  4. "license": "MIT",
  5. "main": "dist/index.js",
  6. "typings": "dist/index.d.ts",
  7. "scripts": {
  8. "build": "yarn tsc && tsc-alias -p tsconfig.build.json",
  9. "tsc": "tsc -p tsconfig.build.json",
  10. "tsc:w": "yarn tsc -w",
  11. "test": "cross-env NODE_ENV=test jest --passWithNoTests",
  12. "lint": "eslint src --ext .ts",
  13. "lint:fix": "eslint src --ext .ts --fix"
  14. },
  15. "dependencies": {
  16. "@slack/oauth": "^2.0.1",
  17. "axios": "^0.24.0",
  18. "browser-bunyan": "^1.6.3",
  19. "bunyan": "^1.8.15",
  20. "extensible-custom-error": "^0.0.7",
  21. "http-errors": "^2.0.0",
  22. "qs": "^6.10.2",
  23. "universal-bunyan": "^0.9.2",
  24. "url-join": "^4.0.0"
  25. },
  26. "devDependencies": {
  27. "@types/express": "^4.17.11",
  28. "eslint-plugin-regex": "^1.8.0",
  29. "tsc-alias": "^1.2.9"
  30. }
  31. }