forked from buerokratt/S3-Ferry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.81 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.81 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
{
"name": "storage-ferry",
"version": "1.1.0",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:check": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"test": "vitest",
"test:run": "vitest run",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --inspect --logHeapUsage --threads=false",
"test:e2e": "vitest --config ./vitest.config.e2e.mts",
"test:e2e:run": "vitest run --config ./vitest.config.e2e.mts",
"prepare": "husky",
"changelog": "./generate-changelog.sh",
"sync-version": "./sync-version.sh",
"bump-patch": "./bump-version.sh patch",
"bump-minor": "./bump-version.sh minor",
"bump-major": "./bump-version.sh major"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.940.0",
"@aws-sdk/credential-provider-ini": "^3.940.0",
"@azure/storage-blob": "^12.29.1",
"@nestjs/common": "^11.1.9",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.9",
"@nestjs/platform-express": "^11.1.9",
"@nestjs/swagger": "^11.2.3",
"@nestjs/terminus": "^11.0.0",
"clamdjs": "^1.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"file-type": "^21.3.0",
"joi": "^18.0.2",
"js-yaml": "^4.1.1",
"minio": "^8.0.6",
"nats": "^2.29.3",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@nestjs/cli": "^11.0.14",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.9",
"@swc/cli": "^0.7.9",
"@swc/core": "^1.15.3",
"@types/express": "^5.0.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.9",
"@types/supertest": "^6.0.3",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitest/coverage-v8": "^4.0.14",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-sort-export-all": "^2.1.0",
"husky": "^9.1.6",
"prettier": "^3.7.3",
"source-map-support": "^0.5.21",
"supertest": "^7.1.4",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"unplugin-swc": "^1.5.9",
"vitest": "^4.0.14"
},
"engines": {
"node": ">=24.11.0",
"npm": ">=10.9.0"
}
}