-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
74 lines (74 loc) · 2.16 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
{
"name": "@codebrew/nestjs-storage",
"version": "0.1.7",
"description": "Nestjs file system wrapping flydrive",
"author": "David Kwon",
"license": "MIT",
"url": "https://github.com/codebrewlab/nestjs-storage",
"scripts": {
"jest": "jest",
"build": "rimraf -rf dist && tsc -p ./tsconfig.lib.json",
"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": "jest --config ./tests/jest-e2e.json --runInBand",
"prerelease": "npm run build",
"release": "release-it"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-angular": "^9.1.1",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@slynova/flydrive": "^1.0.2",
"@slynova/flydrive-gcs": "^1.0.2",
"@slynova/flydrive-s3": "^1.0.2",
"@types/jest": "^28.1.7",
"@types/node": "^14.0.24",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"console-testing-library": "^0.3.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"jest": "^28.0.8",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"release-it": "14.11.8",
"rxjs": "^6.6.0",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@nestjs/common": "^6.10.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"reflect-metadata": "^0.1.13",
"@slynova/flydrive": "^1.0.2",
"@slynova/flydrive-gcs": "^1.0.2",
"@slynova/flydrive-s3": "^1.0.2"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/codebrewlab/nestjs-storage"
},
"publishConfig": {
"access": "public"
}
}