-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
155 lines (155 loc) · 4.75 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "nestjs-multi-throttler",
"version": "1.0.2",
"description": "A NestJS package that provides a multi-rate limit handler for efficient and scalable server-side applications. It allows you to easily configure and manage multiple rate limits, such as requests per minute or requests per hour, with support for different storage options like Redis, in-memory storage, and MongoDB. Ensure optimal performance and prevent abuse by controlling the rate of incoming requests in your NestJS applications.",
"author": "Ganesha moorthy <[email protected]>",
"contributors": [],
"keywords": [
"nestjs",
"rate-limit",
"throttle",
"express",
"fastify",
"ws",
"gql",
"nest",
"redis",
"mongodb",
"multi",
"hour",
"min",
"day",
"week",
"custom-throttling",
"distributed throttling",
"scalable rate limiting",
"throttle middleware",
"throttling strategy",
"throttling configuration",
"rate limit decorator",
"request interceptor",
"NestJS plugin",
"express",
"http server",
"microservices",
"REST API",
"GraphQL API",
"multi-throttler",
"API throttling",
"security"
],
"publishConfig": {
"access": "public"
},
"private": false,
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"prebuild": "rimraf dist",
"preversion": "yarn run format && yarn run lint && yarn build",
"build": "nest build",
"commit": "git-cz",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start:dev": "nodemon --watch '{src,test/app}/**/*.ts' --ignore '**/*.spec.ts' --exec 'ts-node' test/app/main.ts",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json --detectOpenHandles",
"test:e2e:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --config test/jest-e2e.json --runInBand",
"test:e2e:dev": "yarn test:e2e --watchAll",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"release": "changeset publish"
},
"dependencies": {
"md5": "^2.2.1"
},
"devDependencies": {
"ioredis": "^5.3.2",
"mongodb": "^5.6.0",
"@apollo/server": "4.7.4",
"@changesets/cli": "2.26.1",
"@commitlint/cli": "17.6.5",
"@commitlint/config-angular": "17.6.5",
"@nestjs/cli": "9.4.2",
"@nestjs/common": "9.4.1",
"@nestjs/core": "9.4.1",
"@nestjs/graphql": "11.0.5",
"@nestjs/platform-express": "9.4.1",
"@nestjs/platform-fastify": "9.4.1",
"@nestjs/platform-socket.io": "9.4.1",
"@nestjs/platform-ws": "9.4.1",
"@nestjs/schematics": "9.1.0",
"@nestjs/testing": "9.4.1",
"@nestjs/websockets": "9.4.1",
"@semantic-release/git": "10.0.1",
"@types/express": "4.17.17",
"@types/express-serve-static-core": "4.17.35",
"@types/jest": "29.5.2",
"@types/md5": "2.3.2",
"@types/node": "18.16.16",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"apollo-server-fastify": "3.12.0",
"conventional-changelog-cli": "3.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"graphql": "16.6.0",
"graphql-tools": "8.3.20",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.2",
"nodemon": "2.0.22",
"pinst": "3.0.0",
"prettier": "2.8.8",
"reflect-metadata": "0.1.13",
"rimraf": "5.0.1",
"rxjs": "7.8.1",
"socket.io": "4.6.2",
"supertest": "6.3.3",
"ts-jest": "29.1.0",
"ts-loader": "9.4.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.1.3",
"ws": "8.13.0"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0",
"@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0",
"reflect-metadata": "^0.1.13"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ganesha2552/nestjs-multi-throttler.git"
},
"bugs": {
"url": "https://github.com/Ganesha2552/nestjs-multi-throttler/issues"
},
"homepage": "https://github.com/Ganesha2552/nestjs-multi-throttler#readme"
}