package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {
  2. "name": "@uppy/companion",
  3. "version": "5.3.0",
  4. "description": "OAuth helper and remote fetcher for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:",
  5. "main": "lib/companion.js",
  6. "types": "lib/companion.d.ts",
  7. "author": "Transloadit.com",
  8. "license": "MIT",
  9. "homepage": "https://github.com/transloadit/uppy#readme",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/transloadit/uppy.git"
  13. },
  14. "keywords": [
  15. "file uploader",
  16. "progress",
  17. "preview",
  18. "resumable uploads",
  19. "tus",
  20. "s3",
  21. "google drive",
  22. "dropbox",
  23. "box",
  24. "backend",
  25. "websocket",
  26. "express",
  27. "realtime"
  28. ],
  29. "bin": "./bin/companion",
  30. "dependencies": {
  31. "@aws-sdk/client-s3": "^3.338.0",
  32. "@aws-sdk/client-sts": "^3.338.0",
  33. "@aws-sdk/lib-storage": "^3.338.0",
  34. "@aws-sdk/s3-presigned-post": "^3.338.0",
  35. "@aws-sdk/s3-request-presigner": "^3.338.0",
  36. "body-parser": "1.20.3",
  37. "common-tags": "1.8.2",
  38. "connect-redis": "7.1.1",
  39. "content-disposition": "^0.5.4",
  40. "cookie-parser": "1.4.6",
  41. "cors": "^2.8.5",
  42. "escape-goat": "3.0.0",
  43. "escape-string-regexp": "4.0.0",
  44. "express": "4.19.2",
  45. "express-interceptor": "1.2.0",
  46. "express-prom-bundle": "7.0.0",
  47. "express-session": "1.18.0",
  48. "fast-safe-stringify": "^2.1.1",
  49. "got": "^13.0.0",
  50. "grant": "5.4.22",
  51. "helmet": "^7.1.0",
  52. "ioredis": "^5.3.2",
  53. "ipaddr.js": "^2.0.1",
  54. "jsonwebtoken": "9.0.2",
  55. "lodash": "^4.17.21",
  56. "mime-types": "2.1.35",
  57. "moment": "^2.29.2",
  58. "moment-timezone": "^0.5.31",
  59. "morgan": "1.10.0",
  60. "ms": "2.1.3",
  61. "node-schedule": "2.1.1",
  62. "prom-client": "15.1.2",
  63. "serialize-error": "^11.0.0",
  64. "serialize-javascript": "^6.0.0",
  65. "supports-color": "8.x",
  66. "tus-js-client": "^4.1.0",
  67. "validator": "^13.0.0",
  68. "webdav": "5.7.1",
  69. "ws": "8.17.1"
  70. },
  71. "devDependencies": {
  72. "@types/compression": "1.7.0",
  73. "@types/cookie-parser": "1.4.2",
  74. "@types/cors": "2.8.6",
  75. "@types/eslint": "^8.2.0",
  76. "@types/express-session": "1.17.3",
  77. "@types/jsonwebtoken": "8.3.7",
  78. "@types/lodash": "4.14.191",
  79. "@types/morgan": "1.7.37",
  80. "@types/ms": "0.7.31",
  81. "@types/node": "^20.0.0",
  82. "@types/react": "^18.0.0",
  83. "@types/request": "2.48.8",
  84. "@types/webpack": "^5.28.0",
  85. "@types/ws": "8.5.3",
  86. "jest": "^29.0.0",
  87. "nock": "^13.1.3",
  88. "supertest": "6.2.4",
  89. "typescript": "~5.4"
  90. },
  91. "files": [
  92. "bin/",
  93. "lib/"
  94. ],
  95. "jest": {
  96. "testEnvironment": "node",
  97. "testTimeout": 10000,
  98. "automock": false,
  99. "collectCoverage": true,
  100. "collectCoverageFrom": [
  101. "src/**",
  102. "!src/**/*.d.ts"
  103. ]
  104. },
  105. "scripts": {
  106. "build": "tsc -p .",
  107. "deploy": "kubectl apply -f infra/kube/companion-kube.yml",
  108. "start": "node ./lib/standalone/start-server.js",
  109. "test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand"
  110. },
  111. "engines": {
  112. "node": "^18.20.0 || ^20.15.0 || >=22.0.0"
  113. },
  114. "installConfig": {
  115. "hoistingLimits": "workspaces"
  116. }
  117. }