-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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
{
"name": "stalier",
"version": "1.0.4",
"description": "Stalier",
"homepage": "https://github.com/ecyrbe/stalier",
"repository": {
"type": "git",
"url": "https://github.com/ecyrbe/stalier.git"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"author": {
"name": "ecyrbe",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"stale-while-revalidate",
"cache",
"express",
"nestjs"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc -p tsconfig.build.json",
"test": "jest --coverage"
},
"peerDependencies": {
"@nestjs/common": "9.x",
"@nestjs/core": "9.x",
"@nestjs/platform-express": "9.x",
"cache-manager": "4.x",
"express": "4.x",
"rxjs": "7.x"
},
"devDependencies": {
"@nestjs/common": "9.4.3",
"@nestjs/core": "9.4.3",
"@nestjs/platform-express": "9.4.3",
"@nestjs/testing": "9.4.3",
"@types/cache-manager": "4.0.3",
"@types/express": "4.17.17",
"@types/jest": "29.5.5",
"@types/node": "20.8.9",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cache-manager": "4.1.0",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"express": "4.18.2",
"jest": "29.7.0",
"prettier": "3.0.3",
"reflect-metadata": "0.1.13",
"rxjs": "7.8.1",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"dependencies": {}
}