package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@growi/slackbot-proxy",
  3. "version": "5.0.0-slackbot-proxy.0",
  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. },
  23. "// comments for dependencies": {
  24. "read-pkg-up": "v8 doesn't support CommonJS anymore. https://github.com/sindresorhus/read-pkg-up/issues/17"
  25. },
  26. "dependencies": {
  27. "@godaddy/terminus": "^4.9.0",
  28. "@growi/slack": "^5.0.0-RC.0",
  29. "@slack/oauth": "^2.0.1",
  30. "@slack/web-api": "^6.2.4",
  31. "@tsed/common": "^6.43.0",
  32. "@tsed/di": "^6.43.0",
  33. "@tsed/platform-express": "^6.43.0",
  34. "@tsed/swagger": "^6.43.0",
  35. "@tsed/typeorm": "^6.43.0",
  36. "axios": "^0.24.0",
  37. "browser-bunyan": "^1.6.3",
  38. "bunyan": "^1.8.15",
  39. "compression": "^1.7.4",
  40. "cookie-parser": "^1.4.5",
  41. "date-fns": "^2.23.0",
  42. "express-bunyan-logger": "^1.3.3",
  43. "extensible-custom-error": "^0.0.7",
  44. "helmet": "^4.6.0",
  45. "http-errors": "^2.0.0",
  46. "method-override": "^3.0.0",
  47. "mysql2": "^2.2.5",
  48. "read-pkg-up": "^7.0.1",
  49. "typeorm": "^0.2.31",
  50. "universal-bunyan": "^0.9.2"
  51. },
  52. "devDependencies": {
  53. "@tsed/core": "^6.43.0",
  54. "@tsed/exceptions": "^6.43.0",
  55. "@tsed/json-mapper": "^6.43.0",
  56. "@tsed/schema": "^6.43.0",
  57. "bootstrap": "^5.0.2",
  58. "browser-bunyan": "^1.6.3",
  59. "eslint-plugin-regex": "^1.8.0",
  60. "morgan": "^1.10.0",
  61. "ts-node-dev": "^1.1.6",
  62. "tsc-alias": "^1.2.9"
  63. }
  64. }