-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
52 lines (52 loc) · 1.59 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
{
"name": "@squareboat/nest-storage",
"version": "0.2.0",
"description": "Multi disk multi driver storage manager for NestJS 💿💾",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nestjs-storage",
"nestjs-filesystem",
"nestjs-s3"
],
"repository": {
"type": "git",
"url": "https://github.com/squareboat/nestjs-storage.git"
},
"bugs": {
"url": "https://github.com/squareboat/nestjs-storage/issues"
},
"homepage": "https://github.com/squareboat/nestjs-storage",
"author": "Vinayak Sarawagi <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch"
},
"devDependencies": {
"@nestjs/common": "^11.0.10",
"@nestjs/core": "^11.0.10",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.4",
"typescript": "^5.7.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.750.0",
"@aws-sdk/credential-providers": "^3.750.0",
"@aws-sdk/lib-storage": "^3.750.0",
"@aws-sdk/s3-request-presigner": "^3.750.0",
"@aws-sdk/types": "^3.734.0",
"fs-extra": "^11.3.0"
},
"peerDependencies": {
"reflect-metadata": "*",
"rxjs": "*"
}
}