package.json 725 B

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