-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
37 lines (37 loc) · 996 Bytes
/
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
{
"name": "nestjs-simple-redis-lock",
"version": "1.0.1",
"description": "Distributed lock with single redis instance, simple and easy to use for Nestjs",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nestjs",
"redis",
"redis lock",
"distributed lock"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hanFengSan/nestjs-simple-redis-lock.git"
},
"author": "Alex Chen",
"license": "MIT",
"homepage": "https://github.com/hanFengSan/nestjs-simple-redis-lock#readme",
"dependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@types/debug": "^4.1.5",
"debug": "^4.1.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.1.0",
"ioredis": "^5.3.2",
"@liaoliaots/nestjs-redis": "^9.0.5"
},
"devDependencies": {
"@types/node": "^18.11.9",
"typescript": "^4.6.3"
}
}