forked from liaoliaots/nestjs-redis
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 1.86 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
71
72
73
74
75
76
77
{
"name": "@songkeys/root",
"version": "10",
"description": "Redis(ioredis) module for Nest framework (node.js).",
"author": "Songkeys <[email protected]>",
"private": true,
"license": "MIT",
"keywords": [
"redis",
"ioredis",
"sentinel",
"cluster",
"nestjs",
"nest",
"nodejs",
"node",
"typescript",
"javascript",
"health",
"healthcheck",
"healthchecks",
"diagnostics"
],
"scripts": {
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@nestjs/common": "10.0.5",
"@nestjs/core": "10.0.5",
"@nestjs/platform-fastify": "10.0.5",
"@nestjs/terminus": "10.0.1",
"@nestjs/testing": "10.0.5",
"@types/jest": "29.5.2",
"@types/node": "20.4.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"concurrently": "8.2.0",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest": "27.2.2",
"eslint-plugin-prettier": "5.0.0-alpha.1",
"eslint-plugin-tsdoc": "0.2.17",
"fastify": "4.19.2",
"husky": "8.0.3",
"ioredis": "5.3.2",
"istanbul-badges-readme": "1.8.5",
"jest": "29.6.0",
"jest-extended": "4.0.0",
"lint-staged": "13.2.3",
"prettier": "3.0.0",
"reflect-metadata": "0.1.13",
"rimraf": "5.0.1",
"rxjs": "7.8.1",
"ts-jest": "29.1.1",
"tsc-alias": "1.8.7",
"typescript": "5.1.6"
},
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"homepage": "https://github.com/songkeys/nestjs-redis#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/songkeys/nestjs-redis.git"
},
"bugs": {
"url": "https://github.com/songkeys/nestjs-redis/issues"
}
}