-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.21 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
98
99
100
101
102
103
{
"name": "@hodfords/nestjs-storage",
"version": "10.3.12",
"description": "Provides integration with third-party cloud storage solutions in NestJS apps",
"homepage": "https://github.com/hodfords-solutions/nestjs-storage#readme",
"bugs": {
"url": "https://github.com/hodfords-solutions/nestjs-storage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hodfords-solutions/nestjs-storage.git"
},
"license": "UNLICENSED",
"author": "",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"sample/*/**/*.ts\" \"lib/**/*.ts\"",
"postbuild": "cp package.json dist/lib && cp README.md dist/lib && cp .npmrc dist/lib",
"lint": "eslint \"{sample/*,apps,lib,test}/**/*.ts\" --fix",
"prepare": "is-ci || husky",
"release:patch": "git add CHANGELOG.md && npm version patch --tag-version-prefix='' -f -m 'chore: release to %s'",
"release:push": "git push --no-verify && git push --tags --no-verify",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"start:dev": "npm run prebuild && nest start --watch",
"test": "jest",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:watch": "jest --watch",
"version": "auto-changelog && git add CHANGELOG.md",
"wz-command": "wz-command"
},
"jest": {
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"moduleNameMapper": {
"^@hodfords/nestjs-storage(|/.*)$": "<rootDir>/libs/nestjs-storage/src/$1"
},
"rootDir": ".",
"roots": [
"<rootDir>/src/",
"<rootDir>/libs/"
],
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"dependencies": {
"adm-zip": "0.5.16",
"dayjs": "1.11.13",
"eslint-config-prettier": "^9.1.0",
"express": "4.21.0",
"proxy-agent": "6.4.0",
"sharp": "0.33.5",
"slugify": "1.6.6",
"@aws-sdk/client-s3": "3.654.0",
"@aws-sdk/lib-storage": "3.654.0",
"@aws-sdk/s3-request-presigner": "3.654.0",
"@azure/storage-blob": "12.24.0"
},
"devDependencies": {
"@hodfords/nestjs-eslint-config": "^10.0.4",
"@hodfords/nestjs-prettier-config": "^10.0.1",
"@nestjs/cli": "10.4.5",
"@nestjs/common": "10.4.4",
"@nestjs/core": "10.4.4",
"@nestjs/platform-express": "10.4.4",
"@nestjs/testing": "10.4.4",
"@types/express": "4.17.21",
"@types/jest": "29.5.13",
"@types/multer": "1.4.12",
"@types/node": "22.5.5",
"@types/supertest": "6.0.2",
"auto-changelog": "2.5.0",
"axios": "^1.7.7",
"eslint": "9.11.0",
"husky": "9.1.6",
"is-ci": "3.0.1",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"reflect-metadata": "0.2.2",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.6.2"
}
}