package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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/oauth": "^2.0.1",
  21. "@tsed/common": "^6.34.3",
  22. "@tsed/di": "^6.34.3",
  23. "@tsed/platform-express": "^6.34.3",
  24. "@tsed/swagger": "^6.34.3",
  25. "@tsed/typeorm": "^6.34.3",
  26. "compression": "^1.7.4",
  27. "dotenv-flow": "^3.2.0",
  28. "mysql2": "^2.2.5",
  29. "typeorm": "^0.2.31"
  30. },
  31. "devDependencies": {
  32. "@tsed/core": "^6.34.3",
  33. "@tsed/exceptions": "^6.34.3",
  34. "@tsed/json-mapper": "^6.34.3",
  35. "@tsed/schema": "^6.34.3",
  36. "@typescript-eslint/eslint-plugin": "^4.18.0",
  37. "@typescript-eslint/parser": "^4.18.0",
  38. "eslint-import-resolver-typescript": "^2.4.0",
  39. "sqlite3": "^5.0.2",
  40. "ts-jest": "^26.5.4",
  41. "ts-node": "^9.1.1",
  42. "ts-node-dev": "^1.1.6",
  43. "tsc-alias": "1.2.6",
  44. "tsconfig-paths": "^3.9.0",
  45. "typescript": "^4.2.3"
  46. }
  47. }