package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "name": "@uppy/companion",
  3. "version": "4.8.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. "atob": "2.1.2",
  37. "body-parser": "1.20.0",
  38. "chalk": "4.1.2",
  39. "common-tags": "1.8.2",
  40. "connect-redis": "7.1.0",
  41. "content-disposition": "^0.5.4",
  42. "cookie-parser": "1.4.6",
  43. "cors": "^2.8.5",
  44. "escape-goat": "3.0.0",
  45. "escape-string-regexp": "4.0.0",
  46. "express": "4.18.1",
  47. "express-interceptor": "1.2.0",
  48. "express-prom-bundle": "6.5.0",
  49. "express-request-id": "1.4.1",
  50. "express-session": "1.17.3",
  51. "form-data": "^3.0.0",
  52. "got": "11",
  53. "grant": "5.4.21",
  54. "helmet": "^4.6.0",
  55. "ipaddr.js": "^2.0.1",
  56. "jsonwebtoken": "8.5.1",
  57. "lodash": "^4.17.21",
  58. "mime-types": "2.1.35",
  59. "moment": "^2.29.2",
  60. "moment-timezone": "^0.5.31",
  61. "morgan": "1.10.0",
  62. "ms": "2.1.3",
  63. "node-schedule": "2.1.0",
  64. "prom-client": "14.0.1",
  65. "redis": "4.2.0",
  66. "semver": "7.5.3",
  67. "serialize-error": "^2.1.0",
  68. "serialize-javascript": "^6.0.0",
  69. "tus-js-client": "^3.0.0",
  70. "validator": "^13.0.0",
  71. "ws": "8.8.1"
  72. },
  73. "devDependencies": {
  74. "@types/compression": "1.7.0",
  75. "@types/cookie-parser": "1.4.2",
  76. "@types/cors": "2.8.6",
  77. "@types/eslint": "^8.2.0",
  78. "@types/express-session": "1.17.3",
  79. "@types/jsonwebtoken": "8.3.7",
  80. "@types/lodash": "4.14.191",
  81. "@types/morgan": "1.7.37",
  82. "@types/ms": "0.7.31",
  83. "@types/node": "^18.0.3",
  84. "@types/react": "^18.0.0",
  85. "@types/request": "2.48.8",
  86. "@types/webpack": "^5.28.0",
  87. "@types/ws": "8.5.3",
  88. "into-stream": "^6.0.0",
  89. "jest": "^29.0.0",
  90. "nock": "^13.1.3",
  91. "supertest": "6.2.4",
  92. "typescript": "~4.8"
  93. },
  94. "files": [
  95. "bin/",
  96. "lib/"
  97. ],
  98. "jest": {
  99. "testEnvironment": "node",
  100. "testTimeout": 10000,
  101. "automock": false,
  102. "collectCoverage": true,
  103. "collectCoverageFrom": [
  104. "src/**",
  105. "!src/**/*.d.ts"
  106. ]
  107. },
  108. "scripts": {
  109. "build": "tsc -p .",
  110. "deploy": "kubectl apply -f infra/kube/companion-kube.yml",
  111. "prepublishOnly": "yarn run build",
  112. "start": "node ./lib/standalone/start-server.js",
  113. "test": "jest"
  114. },
  115. "engines": {
  116. "node": "^14.19.0 || ^16.15.0 || >=18.0.0"
  117. },
  118. "installConfig": {
  119. "hoistingLimits": "workspaces"
  120. }
  121. }