-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 2.61 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": "@lab08/nestjs-s3",
"version": "4.0.1",
"description": "A NestJS library that wraps the AWS S3 bucket SDK v3 and lets you use it in a more NestJS friendly way.",
"author": "Martin Andreev <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "./dist/index.js",
"files": [
"dist/**/*",
"*.md"
],
"scripts": {
"start:dev": "tsc -w",
"build": "tsc",
"prepare": "npm run build && husky install",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src",
"test": "jest --runInBand --testTimeout=60000",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"keywords": [
"nestjs",
"s3"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/LabO8/nestjs-s3"
},
"bugs": "https://github.com/LabO8/nestjs-s3",
"homepage": "https://labo8.github.io/nestjs-s3/",
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@aws-sdk/client-s3": ">=3.0.0",
"@aws-sdk/node-http-handler": ">=3.0.0",
"@aws-sdk/s3-request-presigner": ">=3.0.0",
"@nestjs/axios": ">=0.0.8",
"@nestjs/common": ">=8.0.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.623.0",
"@aws-sdk/node-http-handler": "^3.374.0",
"@aws-sdk/s3-request-presigner": "^3.623.0",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@hkdobrev/run-if-changed": "^0.5.2",
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.3.10",
"@nestjs/platform-express": "^10.3.10",
"@nestjs/testing": "^10.3.10",
"@types/express": "4.17.15",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.15",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"axios": "^1.7.3",
"commitlint": "^19.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"jest": "^29.7.0",
"lint-staged": "^15.2.8",
"prettier": "^2.8.1",
"reflect-metadata": "^0.1.13",
"rxjs": "7.6.0",
"supertest": "6.3.3",
"ts-jest": "^29.2.4",
"ts-node": "~10.8.2",
"tsc-watch": "5.0.3",
"tsconfig-paths": "4.0.0",
"tslint": "6.1.3",
"typescript": "~4.7.4",
"uuid": "^8.3.2"
},
"lint-staged": {
"*.ts": [
"yarn lint --fix",
"prettier --write"
],
"*.scss": [
"prettier --write"
]
},
"run-if-changed": {
"yarn.lock": "yarn install"
}
}