package.json 755 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "@growi/slack",
  3. "version": "4.4.6-RC.0",
  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.21.1",
  18. "browser-bunyan": "^1.6.3",
  19. "bunyan": "^1.8.15",
  20. "extensible-custom-error": "^0.0.7",
  21. "http-errors": "^1.8.0",
  22. "universal-bunyan": "^0.9.2"
  23. },
  24. "devDependencies": {
  25. "@types/express": "^4.17.11",
  26. "tsc-alias": "^1.2.9"
  27. }
  28. }