forked from skunight/nestjs-redis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "nestjs-redis",
"version": "1.3.3",
"description": "a NestJS ioRedis module",
"author": "skunight",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/skunight/nestjs-redis.git"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish": "yarn run build",
"publish-public": "yarn publish --access public",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"lint": "eslint -c .eslintrc.js"
},
"dependencies": {
"@nestjs/common": "^9.4.2",
"@nestjs/core": "^9.4.2",
"@types/uuid": "9.0.1",
"ioredis": "^5.3.2",
"reflect-metadata": "*",
"rxjs": "^7.8.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@nestjs/testing": "^9.4.2",
"@types/node": "20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"cz-conventional-changelog": "^3",
"eslint": "8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"keywords": [
"nestjs",
"nest",
"redis",
"nestjs-redis"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}