package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "growi-bot-proxy",
  3. "version": "0.9.0-RC",
  4. "scripts": {
  5. "build": "yarn tsc",
  6. "tsc": "tsc --project tsconfig.compile.json",
  7. "tsc:w": "tsc --project tsconfig.json -w",
  8. "dev": "ts-node-dev src/index.ts",
  9. "start:prod": "cross-env NODE_ENV=production node dist/index.js",
  10. "test": "yarn test:lint && yarn test:coverage",
  11. "test:unit": "cross-env NODE_ENV=test jest",
  12. "test:coverage": "yarn test:unit",
  13. "test:lint": "eslint src --ext .ts",
  14. "test:lint:fix": "eslint src --ext .ts --fix"
  15. },
  16. "dependencies": {
  17. "@tsed/common": "^6.34.3",
  18. "@tsed/di": "^6.34.3",
  19. "@tsed/platform-express": "^6.34.3",
  20. "@tsed/swagger": "^6.34.3",
  21. "compression": "^1.7.4"
  22. },
  23. "devDependencies": {
  24. "@tsed/core": "^6.34.3",
  25. "@tsed/exceptions": "^6.34.3",
  26. "@tsed/json-mapper": "^6.34.3",
  27. "@tsed/schema": "^6.34.3",
  28. "@typescript-eslint/eslint-plugin": "^4.18.0",
  29. "@typescript-eslint/parser": "^4.18.0",
  30. "eslint-import-resolver-typescript": "^2.4.0",
  31. "ts-jest": "^26.5.4",
  32. "ts-node": "^9.1.1",
  33. "ts-node-dev": "^1.1.6",
  34. "typescript": "^4.2.3"
  35. }
  36. }