package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "noctbot",
  3. "version": "1.0.0",
  4. "description": "He is a Robot, his name is Noct. He is the Robo-Noct!",
  5. "main": "build/main.js",
  6. "scripts": {
  7. "watch": "rimraf build && tsc -w",
  8. "build": "rimraf build && tsc",
  9. "start": "node ./build/main.js",
  10. "typeorm": "rimraf build && ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://git.coder.horse/ghorsington/noctbot"
  15. },
  16. "keywords": [
  17. "bot",
  18. "noct",
  19. "discord.js",
  20. "discord"
  21. ],
  22. "author": "Geoffrey Horsington <geoffrey.hoooooorse@gmail.com>",
  23. "license": "MIT",
  24. "_moduleAliases": {
  25. "@shared": "../shared/lib/src",
  26. "src": "./build"
  27. },
  28. "dependencies": {
  29. "@types/cheerio": "^0.22.28",
  30. "@types/humanize-duration": "^3.18.1",
  31. "@types/koa": "^2.13.1",
  32. "@types/koa-router": "^7.4.2",
  33. "@types/lowdb": "^1.0.9",
  34. "@types/node-schedule": "^1.3.1",
  35. "@types/sha1": "^1.1.2",
  36. "@types/turndown": "^5.0.0",
  37. "@types/ws": "^7.4.1",
  38. "@types/xml2js": "^0.4.8",
  39. "cheerio": "^1.0.0-rc.6",
  40. "discord.js": "^12.5.3",
  41. "dotenv": "^8.2.0",
  42. "emoji-regex": "^9.2.2",
  43. "express": "^4.17.1",
  44. "form-data": "^3.0.1",
  45. "fp-ts": "^2.10.4",
  46. "google-protobuf": "^3.15.8",
  47. "got": "^11.8.2",
  48. "html2bbcode": "^1.2.6",
  49. "humanize-duration": "^3.25.2",
  50. "interval-promise": "^1.4.0",
  51. "io-ts": "^2.2.16",
  52. "jimp": "^0.16.1",
  53. "koa": "^2.13.1",
  54. "koa-body": "^4.2.0",
  55. "koa-router": "^10.0.0",
  56. "lowdb": "^1.0.0",
  57. "module-alias": "^2.2.2",
  58. "node-schedule": "^1.3.3",
  59. "nodemailer": "^6.5.0",
  60. "pg": "^8.6.0",
  61. "reflect-metadata": "^0.1.13",
  62. "rimraf": "^3.0.2",
  63. "rpc_ts": "^2.1.0",
  64. "rss-parser": "^3.12.0",
  65. "sha1": "^1.1.1",
  66. "tsconfig-paths": "^3.9.0",
  67. "turndown": "^7.0.0",
  68. "type-zoo": "^3.4.1",
  69. "typeorm": "^0.2.32",
  70. "typescript": "^4.2.4",
  71. "typescript-rest-rpc": "^1.0.10",
  72. "uws": "^200.0.0",
  73. "winston": "^3.3.3",
  74. "winston-mongodb": "^5.0.7",
  75. "winston-transport": "^4.4.0",
  76. "yaml": "^1.10.2"
  77. },
  78. "devDependencies": {
  79. "@types/node": "^14.14.41",
  80. "@types/nodemailer": "^6.4.1",
  81. "@typescript-eslint/eslint-plugin": "^4.22.0",
  82. "@typescript-eslint/parser": "^4.22.0",
  83. "eslint": "^7.25.0",
  84. "nodemon": "^2.0.7",
  85. "ts-node": "9.0.0"
  86. }
  87. }