-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
65 lines (65 loc) · 1.71 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
{
"name": "@aginix/nestjs-gcloud-storage",
"version": "1.2.0",
"description": "Google Cloud Storage module for Nest framework",
"author": {
"name": "Nonpawit Teerachetmongkol",
"email": "[email protected]"
},
"main": "./dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aginix/nestjs-gcloud-storage.git"
},
"scripts": {
"start": "tsc -p tsconfig.json",
"start:dev": "tsc -p tsconfig.json -w",
"test": "jest --passWithNoTests",
"precommit": "lint-staged",
"prettier": "prettier src/**/*.ts --write && git status",
"build": "rimraf dist && npm run build:lib && npm test",
"build:lib": "tsc -p tsconfig.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": "^7.1.2",
"@nestjs/core": "^7.1.2",
"@nestjs/platform-express": "^7.1.2"
},
"dependencies": {
"@google-cloud/storage": "^4.7.0"
},
"devDependencies": {
"@nestjs/common": "7.5.2",
"@nestjs/core": "7.5.2",
"@nestjs/platform-express": "7.5.2",
"@nestjs/testing": "7.5.2",
"@types/jest": "25.2.3",
"@types/node": "13.13.5",
"husky": "4.2.5",
"jest": "26.0.1",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"supertest": "4.0.2",
"ts-jest": "25.5.1",
"tslint": "6.1.3",
"typescript": "3.9.7"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}