-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "nestjs-omacache",
"version": "1.1.5",
"description": "simple, flexible and powerful cache decorator factory for NestJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/BJS-kr/nestjs-omacache.git"
},
"directories": {
"lib": "lib"
},
"scripts": {
"test": "ts-node lib/test/runner.ts",
"build": "rimraf dist && tsc"
},
"devDependencies": {
"@nestjs/common": "10.3.9",
"@nestjs/core": "10.3.9",
"@nestjs/platform-express": "10.3.9",
"@nestjs/testing": "10.3.9",
"@types/jest": "29.5.12",
"@types/node": "20.14.2",
"@types/supertest": "6.0.2",
"redis": "^4.6.14",
"reflect-metadata": "0.2.2",
"rimraf": "5.0.7",
"rxjs": "7.8.1",
"supertest": "7.0.0",
"ts-node": "^10.9.2",
"typescript": "5.4.5"
},
"peerDependencies": {
"@nestjs/common": ">=8",
"@nestjs/core": ">=8",
"cache-manager": "<=5",
"reflect-metadata": "^0.1.12 || ^0.2.0",
"rxjs": ">= 7.x"
},
"keywords": [
"nest",
"nestjs",
"cache",
"optimization",
"server"
],
"author": "hahajeng1234@gmail.com",
"license": "ISC",
"dependencies": {
"lru-cache": "^10.2.2"
}
}