forked from nestjs-redisx/nestjs-redisx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.02 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@nestjs-redisx/monorepo",
"version": "1.0.5",
"private": true,
"description": "Best-in-class Redis module for NestJS with plugin architecture",
"workspaces": [
"packages/*",
"apps/demo",
"apps/example",
"website"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:core": "npm run build -w @nestjs-redisx/core",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:cluster": "REDIS_MODE=cluster vitest run --config vitest.integration.config.ts",
"test:integration:sentinel": "REDIS_MODE=sentinel vitest run --config vitest.integration.config.ts",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:load": "vitest run --config vitest.load.config.ts",
"test:stress": "vitest run --config vitest.stress.config.ts",
"docker:redis:up": "docker-compose -f docker/docker-compose.yml up -d redis",
"docker:redis:down": "docker-compose -f docker/docker-compose.yml down",
"docker:cluster:up": "./scripts/docker-cluster-up.sh",
"docker:cluster:down": "./scripts/docker-cluster-down.sh",
"docker:sentinel:up": "./scripts/docker-sentinel-up.sh",
"docker:sentinel:down": "./scripts/docker-sentinel-down.sh",
"lint": "eslint . --fix",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --check \"**/*.ts\"",
"typecheck": "tsc --noEmit",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules",
"dev": "npm run build -- --watch",
"docs:dev": "npm run dev -w website",
"docs:build": "npm run build -w website",
"docs:preview": "npm run preview -w website",
"prepare": "husky"
},
"devDependencies": {
"@nestjs/cli": "^10.3.0",
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.3.0",
"@nestjs/platform-express": "^10.3.0",
"@nestjs/testing": "^10.3.0",
"@testcontainers/redis": "^10.5.0",
"@types/ioredis": "^5.0.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@vitest/coverage-v8": "^1.2.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.3.0",
"husky": "^9.1.7",
"ioredis": "^5.9.2",
"lint-staged": "^16.2.7",
"prettier": "^3.2.4",
"redis": "^5.10.0",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.55.0",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs-redisx/nestjs-redisx.git"
},
"keywords": [
"nestjs",
"redis",
"cache",
"locks",
"rate-limit",
"idempotency",
"streams",
"observability"
],
"author": "NestJS RedisX Contributors",
"license": "MIT",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}