Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
122 lines
3.8 KiB
JSON
122 lines
3.8 KiB
JSON
{
|
|
"name": "@nestjs/throttler",
|
|
"version": "6.5.0",
|
|
"description": "A Rate-Limiting module for NestJS to work on Express, Fastify, Websockets, Socket.IO, and GraphQL, all rolled up into a simple package.",
|
|
"author": "Jay McDoniel <me@jaymcdoniel.dev>",
|
|
"contributors": [],
|
|
"keywords": [
|
|
"nestjs",
|
|
"rate-limit",
|
|
"throttle",
|
|
"express",
|
|
"fastify",
|
|
"ws",
|
|
"gql",
|
|
"nest"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"private": false,
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@apollo/server": "5.2.0",
|
|
"@changesets/cli": "2.29.8",
|
|
"@commitlint/cli": "20.1.0",
|
|
"@commitlint/config-angular": "20.0.0",
|
|
"@nestjs/cli": "11.0.14",
|
|
"@nestjs/common": "11.1.9",
|
|
"@nestjs/core": "11.1.9",
|
|
"@nestjs/graphql": "13.2.0",
|
|
"@nestjs/platform-express": "11.1.9",
|
|
"@nestjs/platform-fastify": "11.1.9",
|
|
"@nestjs/platform-socket.io": "11.1.9",
|
|
"@nestjs/platform-ws": "11.1.9",
|
|
"@nestjs/schematics": "11.0.9",
|
|
"@nestjs/testing": "11.1.9",
|
|
"@nestjs/websockets": "11.1.9",
|
|
"@semantic-release/git": "10.0.1",
|
|
"@types/express": "5.0.6",
|
|
"@types/express-serve-static-core": "5.1.0",
|
|
"@types/jest": "29.5.14",
|
|
"@types/node": "24.10.1",
|
|
"@types/supertest": "6.0.3",
|
|
"@typescript-eslint/eslint-plugin": "7.18.0",
|
|
"@typescript-eslint/parser": "7.18.0",
|
|
"apollo-server-fastify": "3.13.0",
|
|
"conventional-changelog-cli": "5.0.0",
|
|
"cz-conventional-changelog": "3.3.0",
|
|
"eslint": "8.57.1",
|
|
"eslint-config-prettier": "10.1.8",
|
|
"eslint-plugin-import": "2.32.0",
|
|
"graphql": "16.12.0",
|
|
"graphql-tools": "9.0.25",
|
|
"husky": "9.1.7",
|
|
"jest": "29.7.0",
|
|
"lint-staged": "16.2.7",
|
|
"nodemon": "3.1.11",
|
|
"pactum": "^3.4.1",
|
|
"pinst": "3.0.0",
|
|
"prettier": "3.7.3",
|
|
"reflect-metadata": "0.2.2",
|
|
"rimraf": "6.1.2",
|
|
"rxjs": "7.8.2",
|
|
"socket.io": "4.8.1",
|
|
"supertest": "7.1.4",
|
|
"ts-jest": "29.4.6",
|
|
"ts-loader": "9.5.4",
|
|
"ts-node": "10.9.2",
|
|
"tsconfig-paths": "4.2.0",
|
|
"typescript": "5.9.3",
|
|
"ws": "8.18.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
"@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
"reflect-metadata": "^0.1.13 || ^0.2.0"
|
|
},
|
|
"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/nestjs/throttler.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nestjs/throttler/issues"
|
|
},
|
|
"homepage": "https://github.com/nestjs/throttler#readme",
|
|
"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",
|
|
"release": "changeset publish"
|
|
}
|
|
} |