package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@growi/slackbot-proxy",
  3. "version": "1.0.3",
  4. "license": "MIT",
  5. "scripts": {
  6. "build": "yarn tsc && tsc-alias -p tsconfig.build.json",
  7. "cp:public": "cp -RT ./src/public ./dist/public",
  8. "cp:views": "cp -RT ./src/views ./dist/views",
  9. "cp:bootstrap": "cp -RT ./node_modules/bootstrap/dist ./dist/public/bootstrap",
  10. "cp:bootstrap:dev": "cp -RT ./node_modules/bootstrap/dist ./src/public/bootstrap",
  11. "tsc": "tsc -p tsconfig.build.json",
  12. "tsc:w": "yarn tsc -w",
  13. "dev:ci": "yarn dev --ci",
  14. "dev": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register -r dotenv-flow/config src/index.ts",
  15. "start:prod:ci": "yarn start:prod --ci",
  16. "start:prod": "cross-env NODE_ENV=production node -r dotenv-flow/config dist/index.js",
  17. "postbuild": "yarn cp:public && yarn cp:views && yarn cp:bootstrap",
  18. "predev": "yarn cp:bootstrap:dev",
  19. "test": "cross-env NODE_ENV=test jest --passWithNoTests",
  20. "lint": "eslint src --ext .ts",
  21. "lint:fix": "eslint src --ext .ts --fix",
  22. "version": "node -p \"require('./package.json').version\""
  23. },
  24. "// comments for dependencies": {},
  25. "dependencies": {
  26. "@godaddy/terminus": "^4.8.0",
  27. "@growi/slack": "^4.4.0-RC",
  28. "@slack/oauth": "^2.0.1",
  29. "@slack/web-api": "^6.2.4",
  30. "@tsed/common": "^6.43.0",
  31. "@tsed/di": "^6.43.0",
  32. "@tsed/platform-express": "^6.43.0",
  33. "@tsed/swagger": "^6.43.0",
  34. "@tsed/typeorm": "^6.43.0",
  35. "axios": "^0.21.1",
  36. "browser-bunyan": "^1.6.3",
  37. "bunyan": "^1.8.15",
  38. "compression": "^1.7.4",
  39. "cookie-parser": "^1.4.5",
  40. "date-fns": "^2.23.0",
  41. "express-bunyan-logger": "^1.3.3",
  42. "extensible-custom-error": "^0.0.7",
  43. "helmet": "^4.6.0",
  44. "http-errors": "^1.8.0",
  45. "method-override": "^3.0.0",
  46. "mysql2": "^2.2.5",
  47. "typeorm": "^0.2.31",
  48. "universal-bunyan": "^0.9.2"
  49. },
  50. "devDependencies": {
  51. "@tsed/core": "^6.43.0",
  52. "@tsed/exceptions": "^6.43.0",
  53. "@tsed/json-mapper": "^6.43.0",
  54. "@tsed/schema": "^6.43.0",
  55. "bootstrap": "^5.0.2",
  56. "browser-bunyan": "^1.6.3",
  57. "morgan": "^1.10.0",
  58. "ts-node-dev": "^1.1.6",
  59. "tsc-alias": "^1.2.9"
  60. }
  61. }