package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. "@google-cloud/translate": "^5.3.0",
  30. "@types/cheerio": "^0.22.22",
  31. "@types/humanize-duration": "^3.18.1",
  32. "@types/koa": "^2.11.4",
  33. "@types/koa-router": "^7.4.1",
  34. "@types/lowdb": "^1.0.9",
  35. "@types/node-schedule": "^1.3.0",
  36. "@types/sha1": "^1.1.2",
  37. "@types/turndown": "^5.0.0",
  38. "@types/ws": "^7.2.6",
  39. "@types/xml2js": "^0.4.5",
  40. "cheerio": "^1.0.0-rc.3",
  41. "discord.js": "^12.3.1",
  42. "dotenv": "^8.2.0",
  43. "emoji-regex": "^9.0.0",
  44. "express": "^4.17.1",
  45. "form-data": "^3.0.0",
  46. "google-protobuf": "^3.13.0",
  47. "got": "^11.7.0",
  48. "html2bbcode": "^1.2.6",
  49. "humanize-duration": "^3.23.1",
  50. "interval-promise": "^1.4.0",
  51. "jimp": "^0.12.1",
  52. "koa": "^2.13.0",
  53. "koa-body": "^4.2.0",
  54. "koa-router": "^8.0.8",
  55. "lowdb": "^1.0.0",
  56. "module-alias": "^2.2.2",
  57. "node-schedule": "^1.3.2",
  58. "nodemailer": "^6.4.11",
  59. "pg": "^8.3.2",
  60. "reflect-metadata": "^0.1.13",
  61. "rimraf": "^3.0.2",
  62. "rpc_ts": "^2.1.0",
  63. "rss-parser": "^3.9.0",
  64. "sha1": "^1.1.1",
  65. "tsconfig-paths": "^3.9.0",
  66. "turndown": "^6.0.0",
  67. "type-zoo": "^3.4.1",
  68. "typeorm": "^0.2.26",
  69. "typescript": "^3.9.7",
  70. "typescript-rest-rpc": "^1.0.10",
  71. "uws": "^100.0.1",
  72. "winston": "^3.3.3",
  73. "winston-mongodb": "^5.0.5",
  74. "winston-transport": "^4.4.0",
  75. "yaml": "^1.10.0"
  76. },
  77. "devDependencies": {
  78. "@types/node": "^14.11.2",
  79. "@types/nodemailer": "^6.4.0",
  80. "@typescript-eslint/eslint-plugin": "^3.9.1",
  81. "@typescript-eslint/parser": "^3.9.1",
  82. "eslint": "^7.10.0",
  83. "nodemon": "^2.0.4",
  84. "ts-node": "8.10.2"
  85. }
  86. }