forked from scalio/nest-couchbase
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "@scalio-oss/nest-couchbase",
"description": "Couchbase module for Nest framework",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "yarn build:clean",
"build:clean": "cd dist && rm -rf `ls | grep -v \"LICENSE\\|package.json\\|README.md\\|.npmrc\"`",
"build": "npx tsc -b tsconfig.build.json",
"commit": "npx git-cz",
"lint": "npx tslint 'src/*.ts'",
"format": "npx pretty-quick --pattern 'src/**/*.ts'",
"test:e2e": "npx jest -c=jest.config.js e2e/ --verbose --runInBand",
"start": "npx nodemon -w ./integration -e ts node_modules/.bin/ts-node integration/main.ts"
},
"husky": {
"hooks": {
"pre-commit": "yarn format --staged",
"commit-msg": "npx validate-commit-msg"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"yarn commit\" instead"
}
},
"dependencies": {
"@nestjs/common": "6.5.3",
"@nestjs/core": "6.5.3",
"@nestjs/platform-express": "6.5.3",
"@nestjs/swagger": "^3.1.0",
"@nestjs/testing": "6.5.3",
"@types/couchbase": "2.4.1",
"@types/jest": "24.0.15",
"@types/node": "12.6.8",
"@zmotivat0r/o0": "1.0.2",
"class-transformer": "0.2.3",
"commitizen": "4.0.3",
"couchbase": "2.6.5",
"coveralls": "3.0.5",
"cz-conventional-changelog": "3.0.2",
"husky": "2.7.0",
"jest": "24.8.0",
"nodemon": "^1.19.1",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.2",
"swagger-ui-express": "^4.0.7",
"ts-jest": "24.0.2",
"ts-node": "8.3.0",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.5.3",
"validate-commit-msg": "2.14.0"
}
}