package.json 878 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@growi/slack",
  3. "version": "6.0.0-RC.6",
  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. "clean": "npx -y shx rm -rf dist",
  10. "tsc": "tsc -p tsconfig.build.json",
  11. "tsc:w": "yarn tsc -w",
  12. "test": "cross-env NODE_ENV=test jest --passWithNoTests",
  13. "lint": "eslint src --ext .ts",
  14. "lint:fix": "eslint src --ext .ts --fix"
  15. },
  16. "dependencies": {
  17. "@slack/oauth": "^2.0.1",
  18. "axios": "^0.24.0",
  19. "browser-bunyan": "^1.6.3",
  20. "bunyan": "^1.8.15",
  21. "extensible-custom-error": "^0.0.7",
  22. "http-errors": "^2.0.0",
  23. "qs": "^6.10.2",
  24. "universal-bunyan": "^0.9.2",
  25. "url-join": "^4.0.0"
  26. },
  27. "devDependencies": {
  28. "@types/express": "^4.17.11",
  29. "eslint-plugin-regex": "^1.8.0",
  30. "tsc-alias": "^1.2.9"
  31. }
  32. }