forked from supabase/storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.5 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
{
"name": "supa-storage",
"version": "0.9.5",
"description": "Supabase storage middleend",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --log-error --files ./src/server.ts --stack_trace_limit=100 -r trace -r clarify",
"build": "tsc -p tsconfig.json",
"start": "NODE_ENV=production node dist/server.js",
"migration:run": "ts-node-dev ./src/scripts/migrate-call.ts",
"docs:export": "ts-node-dev ./src/scripts/export-docs.ts",
"test:dummy-data": "ts-node-dev -r dotenv/config ./src/test/db/import-dummy-data.ts",
"test": "npm run infra:restart && npm run test:dummy-data && jest --runInBand --forceExit",
"test:coverage": "npm run infra:restart && npm run test:dummy-data && jest --runInBand --coverage --forceExit",
"prettier:check": "prettier -c src/**",
"format": "prettier -c --write src/**",
"eslint:check": "eslint 'src/**'",
"infra:stop": "docker-compose --project-directory . -f src/test/db/docker-compose.yml down --remove-orphans",
"infra:start": "docker-compose --project-directory . -f src/test/db/docker-compose.yml up -d && sleep 5 && npm run migration:run",
"infra:restart": "npm run infra:stop && npm run infra:start"
},
"author": "Supabase",
"license": "ISC",
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "3.350.0",
"@aws-sdk/lib-storage": "3.350.0",
"@aws-sdk/node-http-handler": "3.350.0",
"@aws-sdk/s3-request-presigner": "3.350.0",
"@fastify/multipart": "^7.6.0",
"@fastify/rate-limit": "^7.6.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.7.0",
"@tus/file-store": "^1.0.0-beta.1",
"@tus/s3-store": "https://gitpkg.now.sh/supabase/tus-node-server/packages/s3-store/dist?build",
"@tus/server": "https://gitpkg.now.sh/supabase/tus-node-server/packages/server/dist?build",
"agentkeepalive": "^4.2.1",
"async-retry": "^1.3.3",
"axios": "^0.27.2",
"axios-retry": "^3.3.1",
"connection-string": "^4.3.6",
"conventional-changelog-conventionalcommits": "^5.0.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"fastify": "^4.8.1",
"fastify-cors": "^6.1.0",
"fastify-metrics": "^10.2.0",
"fastify-plugin": "^4.0.0",
"fs-extra": "^10.0.1",
"fs-xattr": "^0.3.1",
"ioredis": "^5.2.4",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.2",
"md5-file": "^5.0.0",
"pg": "^8.10.0",
"pg-boss": "^8.1.1",
"pg-listen": "^1.7.0",
"pino": "^8.2.0",
"pino-logflare": "^0.3.12",
"postgres-migrations": "^5.3.0",
"prom-client": "^14.0.1"
},
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@types/busboy": "^1.3.0",
"@types/crypto-js": "^4.1.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.1",
"@types/js-yaml": "^4.0.5",
"@types/jsonwebtoken": "^8.5.8",
"@types/lru-cache": "^7.10.10",
"@types/mustache": "^4.2.2",
"@types/node": "^18.14.6",
"@types/pg": "^8.6.4",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-jest": "^29.2.2",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"form-data": "^4.0.0",
"jest": "^29.2.2",
"js-yaml": "^4.1.0",
"json-schema-to-ts": "^2.5.4",
"mustache": "^4.2.0",
"pino-pretty": "^8.1.0",
"prettier": "^2.5.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^1.1.8",
"tus-js-client": "^3.1.0",
"typescript": "^4.5.5"
},
"bin": "./dist/server.js"
}