forked from skunight/nestjs-redis
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2.01 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
{
"name": "nestjs-redis-cluster",
"version": "2.1.0",
"description": "A nestjs redis module w/ cluster support",
"author": "Ishmael Samuel (useparagon.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/useparagon/nestjs-redis-cluster"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish:npm": "yarn run build",
"ci:compile": "whiskers",
"publish:npm": "yarn publish --access public",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"lint": "tslint -p tsconfig.json -c tslint.json",
"release:publish:experimental": "yarn publish --new-version=$npm_package_version --tag=experimental",
"release:publish:stable": "yarn publish --new-version=$npm_package_version --tag=latest",
"release:version:bump": "ts-node ./scripts/version-bump.ts"
},
"dependencies": {
"reflect-metadata": "0.1.13",
"rxjs": "^7.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@nestjs/common": "^8.0.7",
"@nestjs/core": "^8.0.7",
"@nestjs/testing": "^8.0.7",
"@types/ioredis": "^4.28.5",
"@types/node": "^10.7.1",
"@types/uuid": "^8.3.2",
"ts-node": "^10.9.2",
"cz-conventional-changelog": "^2.1.0",
"@useparagon/whiskers-cli": "2024.06.14",
"@useparagon/whiskers-core": "2024.06.14",
"ioredis": "^4.28.5",
"jest": "^23.6.0",
"prettier": "^1.19.1",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.6.4"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"ioredis": "4.x",
"rxjs": "^7.0.0",
"uuid": "^8.3.2"
},
"keywords": [
"nestjs",
"nest",
"redis",
"nestjs-redis"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}