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