forked from nestjs/azure-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "@nestjs/azure-storage",
"version": "3.0.0",
"description": "An Azure Storage module for Nest framework (node.js)",
"license": "MIT",
"author": "Wassim Chegham",
"scripts": {
"test": "jest",
"precommit": "lint-staged",
"prettier": "prettier src/**/*.ts --write && git status",
"build": "npm run build:lib && npm run build:schematics && npm test",
"build:lib": "tsc -p tsconfig.json",
"build:schematics": "tsc -p tsconfig.schematics.json",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/platform-express": "^8.0.0"
},
"devDependencies": {
"@nestjs/common": "8.4.7",
"@nestjs/core": "8.4.7",
"@nestjs/platform-express": "8.4.7",
"@types/jest": "^25.0.0",
"@types/node": "14.17.11",
"husky": "8.0.1",
"jest": "^27.0.0",
"lint-staged": "13.0.3",
"mock-stdin": "^1.0.0",
"prettier": "2.7.1",
"ts-jest": "^27.0.0",
"ts-morph": "15.1.0",
"@angular/cdk": "^8.1.2",
"reflect-metadata": "^0.1.12",
"typescript": "3.6.4"
},
"dependencies": {
"@angular-devkit/schematics": "8.3.29",
"@schematics/angular": "8.3.29",
"@angular/cdk": "8.2.3",
"@azure/storage-blob": "10.5.0"
},
"main": "./dist/index.js",
"schematics": "./schematics/collection.json",
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}