package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@growi/slackbot-proxy",
  3. "version": "0.9.0-RC",
  4. "license": "MIT",
  5. "scripts": {
  6. "build": "yarn tsc",
  7. "tsc": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
  8. "tsc:w": "tsc -w",
  9. "dev:ci": "yarn dev --ci",
  10. "dev": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register -r dotenv-flow/config src/index.ts",
  11. "start:prod:ci": "yarn start:prod --ci",
  12. "start:prod": "cross-env NODE_ENV=production node -r dotenv-flow/config dist/index.js",
  13. "test": "yarn test:lint && yarn test:coverage",
  14. "test:unit": "cross-env NODE_ENV=test jest --passWithNoTests",
  15. "test:coverage": "yarn test:unit",
  16. "test:lint": "eslint src --ext .ts",
  17. "test:lint:fix": "eslint src --ext .ts --fix"
  18. },
  19. "dependencies": {
  20. "@slack/interactive-messages": "^2.0.1",
  21. "@slack/oauth": "^2.0.1",
  22. "@slack/web-api": "^6.1.0",
  23. "@tsed/common": "^6.34.3",
  24. "@tsed/di": "^6.34.3",
  25. "@tsed/platform-express": "^6.34.3",
  26. "@tsed/swagger": "^6.34.3",
  27. "@tsed/typeorm": "^6.34.3",
  28. "compression": "^1.7.4",
  29. "dotenv-flow": "^3.2.0",
  30. "mysql2": "^2.2.5",
  31. "typeorm": "^0.2.31",
  32. "@growi/slack":"0.9.0-RC"
  33. },
  34. "devDependencies": {
  35. "@tsed/core": "^6.34.3",
  36. "@tsed/exceptions": "^6.34.3",
  37. "@tsed/json-mapper": "^6.34.3",
  38. "@tsed/schema": "^6.34.3",
  39. "@typescript-eslint/eslint-plugin": "^4.18.0",
  40. "@typescript-eslint/parser": "^4.18.0",
  41. "eslint-import-resolver-typescript": "^2.4.0",
  42. "ts-jest": "^26.5.4",
  43. "ts-node": "^9.1.1",
  44. "ts-node-dev": "^1.1.6",
  45. "tsc-alias": "1.2.6",
  46. "tsconfig-paths": "^3.9.0",
  47. "typescript": "^4.2.3"
  48. }
  49. }