-
-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.89 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.89 KB
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
116
117
118
119
120
121
122
123
124
125
{
"name": "supa-storage",
"scripts": {
"postinstall": "patch-package",
"dev": "tsx watch src/start/server.ts | pino-pretty",
"build": "tsc -noEmit && node ./build.js && resolve-tspaths",
"start": "NODE_ENV=production node dist/start/server.js",
"lint": "biome check . && prettier --check .",
"lint:fix": "biome check --fix . && prettier --write .",
"migration:run": "tsx src/scripts/migrate-call.ts",
"migration:test-idempotency": "tsx src/scripts/test-migration-idempotency.ts",
"migrations:types": "tsx src/scripts/migrations-types.ts",
"docs:export": "tsx ./src/scripts/export-docs.ts",
"test:dummy-data": "tsx -r dotenv/config ./src/test/db/import-dummy-data.ts",
"test": "npm run infra:restart && npm run test:dummy-data && jest --no-cache --runInBand",
"test:oriole": "npm run infra:restart:oriole && npm run test:dummy-data && jest --no-cache --runInBand",
"test:coverage": "npm run infra:restart && npm run test:dummy-data && jest --no-cache --runInBand --coverage",
"infra:stop": "docker compose --project-directory . -f ./.docker/docker-compose-infra.yml down --remove-orphans",
"infra:start": "docker compose --project-directory . -f ./.docker/docker-compose-infra.yml up -d && sleep 5 && npm run migration:run",
"infra:start:oriole": "docker compose --project-directory . -f ./.docker/docker-compose-infra.yml -f ./.docker/docker-compose-infra-oriole-override.yml up -d && sleep 5 && npm run migration:run",
"infra:restart": "npm run infra:stop && npm run infra:start",
"infra:restart:oriole": "npm run infra:stop && npm run infra:start:oriole"
},
"dependencies": {
"@aws-sdk/client-ecs": "^3.1023.0",
"@aws-sdk/client-s3": "^3.1023.0",
"@aws-sdk/client-s3vectors": "^3.1023.0",
"@aws-sdk/lib-storage": "^3.1023.0",
"@aws-sdk/s3-request-presigner": "^3.1024.0",
"@fastify/accepts": "^5.0.4",
"@fastify/multipart": "^9.4.0",
"@fastify/otel": "^0.17.1",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@isaacs/ttlcache": "^1.4.1",
"@kubernetes/client-node": "^1.3.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.70.1",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.213.0",
"@opentelemetry/exporter-prometheus": "^0.213.0",
"@opentelemetry/host-metrics": "^0.38.3",
"@opentelemetry/instrumentation-aws-sdk": "^0.59.0",
"@opentelemetry/instrumentation-http": "^0.213.0",
"@opentelemetry/instrumentation-knex": "^0.58.0",
"@opentelemetry/instrumentation-pg": "^0.64.0",
"@opentelemetry/instrumentation-runtime-node": "^0.25.0",
"@opentelemetry/sdk-metrics": "^2.6.0",
"@opentelemetry/sdk-node": "^0.213.0",
"@platformatic/node": "^3.45.0",
"@platformatic/wattpm-pprof-capture": "^3.45.0",
"@shopify/semaphore": "^3.0.2",
"@smithy/node-http-handler": "^2.3.1",
"@tus/file-store": "2.0.0",
"@tus/s3-store": "2.0.2",
"@tus/server": "2.2.1",
"agentkeepalive": "^4.5.0",
"ajv": "^8.18.0",
"async-retry": "^1.3.3",
"aws-sigv4-sign": "^1.2.1",
"axios": "^1.13.6",
"axios-retry": "^3.9.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"dotenv": "^16.0.0",
"fastify": "^5.8.3",
"fastify-plugin": "^5.1.0",
"fs-xattr": "0.3.1",
"ioredis": "^5.2.4",
"ip-address": "^10.0.1",
"jose": "^6.2.2",
"json-bigint": "^1.0.0",
"knex": "^3.1.0",
"lru-cache": "^11.2.0",
"object-sizeof": "^2.6.4",
"pg": "^8.12.0",
"pg-boss": "github:supabase/pg-boss#feat/exactly_once",
"pg-listen": "^1.7.0",
"pino": "^10.3.1",
"pino-logflare": "^0.5.2",
"platformatic": "^3.45.0",
"postgres-migrations": "^5.3.0",
"wattpm": "^3.45.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@aws-sdk/s3-presigned-post": "^3.1023.0",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@biomejs/biome": "^2.4.4",
"@types/async-retry": "^1.4.5",
"@types/busboy": "^1.3.0",
"@types/cloneable-readable": "^2.0.3",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.5",
"@types/json-bigint": "^1.0.4",
"@types/node": "^24.12.0",
"@types/pg": "^8.6.4",
"@types/stream-buffers": "^3.0.7",
"@types/xml2js": "^0.4.14",
"babel-jest": "^30.3.0",
"esbuild": "^0.25.8",
"form-data": "^4.0.0",
"jest": "^30.3.0",
"js-yaml": "^4.1.0",
"json-schema-to-ts": "^3.0.0",
"patch-package": "^8.0.0",
"pino-pretty": "^13.1.3",
"prettier": "^2.8.8",
"resolve-tspaths": "^0.8.19",
"stream-buffers": "^3.0.2",
"ts-jest": "^29.4.6",
"tsx": "^4.16.0",
"tus-js-client": "^3.1.0",
"typescript": "5.9.3"
},
"version": "1.11.2",
"description": "Supabase Storage Service",
"main": "index.js",
"author": "Supabase",
"license": "ISC",
"bin": "./dist/server.js",
"engines": {
"node": ">=24.0.0"
}
}