forked from LabO8/nestjs-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.41 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
{
"name": "@lab08/nestjs-s3",
"version": "2.0.3",
"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",
"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/",
"peerDependencies": {
"@nestjs/axios": "^0.0.8",
"@nestjs/common": "^8.4.7"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.121.0",
"@aws-sdk/node-http-handler": "^3.118.1",
"@aws-sdk/s3-request-presigner": "^3.121.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@hkdobrev/run-if-changed": "^0.3.1",
"@nestjs/axios": "^0.0.8",
"@nestjs/common": "^8.4.7",
"@nestjs/core": "^8.4.7",
"@nestjs/platform-express": "^8.4.7",
"@nestjs/testing": "^8.4.7",
"@types/express": "4.17.13",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.1",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"commitlint": "^17.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rxjs": "7.5.5",
"supertest": "6.2.4",
"ts-jest": "^28.0.5",
"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"
}
}