forked from skunight/nestjs-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 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
{
"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": "^7.4.4",
"@nestjs/core": "^7.4.4",
"@types/ioredis": "*",
"@types/uuid": "*",
"ioredis": "^4",
"reflect-metadata": "*",
"rxjs": "^6",
"uuid": "^8"
},
"devDependencies": {
"@nestjs/testing": "^7",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"cz-conventional-changelog": "^3",
"eslint": "*",
"eslint-config-prettier": "^6",
"eslint-plugin-jest": "^24",
"eslint-plugin-prettier": "^3",
"jest": "^26",
"prettier": "^2",
"rimraf": "*",
"ts-jest": "^26",
"typescript": "^4"
},
"keywords": [
"nestjs",
"nest",
"redis",
"nestjs-redis"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}