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>
117 lines
3.2 KiB
JSON
117 lines
3.2 KiB
JSON
{
|
|
"name": "@nestjs/swagger",
|
|
"version": "11.2.4",
|
|
"description": "Nest - modern, fast, powerful node.js web framework (@swagger)",
|
|
"author": "Kamil Mysliwiec",
|
|
"license": "MIT",
|
|
"repository": "https://github.com/nestjs/swagger",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"format": "prettier \"lib/**/*.ts\" --write",
|
|
"lint": "eslint 'lib/**/*.ts' --fix",
|
|
"prepublish:next": "npm run build",
|
|
"publish:next": "npm publish --access public --tag next",
|
|
"prepublish:npm": "npm run build",
|
|
"publish:npm": "npm publish --access public",
|
|
"prepare": "npm run build",
|
|
"test": "jest",
|
|
"test:dev": "jest --watch",
|
|
"test:e2e": "jest --config e2e/jest-e2e.json",
|
|
"prerelease": "npm run build",
|
|
"release": "release-it",
|
|
"---manual-tests---": "",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --watch --debug"
|
|
},
|
|
"dependencies": {
|
|
"@microsoft/tsdoc": "0.16.0",
|
|
"@nestjs/mapped-types": "2.1.0",
|
|
"js-yaml": "4.1.1",
|
|
"lodash": "4.17.21",
|
|
"path-to-regexp": "8.3.0",
|
|
"swagger-ui-dist": "5.31.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "20.3.0",
|
|
"@commitlint/config-angular": "20.3.0",
|
|
"@eslint/eslintrc": "3.3.3",
|
|
"@eslint/js": "9.39.2",
|
|
"@fastify/static": "9.0.0",
|
|
"@nestjs/common": "11.1.11",
|
|
"@nestjs/core": "11.1.11",
|
|
"@nestjs/platform-express": "11.1.11",
|
|
"@nestjs/platform-fastify": "11.1.11",
|
|
"@types/jest": "30.0.0",
|
|
"@types/js-yaml": "4.0.9",
|
|
"@types/lodash": "4.17.21",
|
|
"@types/node": "24.10.4",
|
|
"class-transformer": "0.5.1",
|
|
"class-validator": "0.14.3",
|
|
"eslint": "9.39.2",
|
|
"eslint-config-prettier": "10.1.8",
|
|
"eslint-plugin-prettier": "5.5.4",
|
|
"express": "5.2.1",
|
|
"fastify": "5.6.2",
|
|
"globals": "17.0.0",
|
|
"husky": "9.1.7",
|
|
"jest": "30.2.0",
|
|
"lerna-changelog": "2.2.0",
|
|
"lint-staged": "16.2.7",
|
|
"openapi-types": "12.1.3",
|
|
"prettier": "3.7.4",
|
|
"prettier-v2": "npm:prettier@2.8.8",
|
|
"reflect-metadata": "0.2.2",
|
|
"release-it": "19.2.2",
|
|
"supertest": "7.2.2",
|
|
"swagger-parser": "10.0.3",
|
|
"ts-jest": "29.4.6",
|
|
"typescript": "5.9.3",
|
|
"typescript-eslint": "8.52.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@fastify/static": "^8.0.0 || ^9.0.0",
|
|
"@nestjs/common": "^11.0.1",
|
|
"@nestjs/core": "^11.0.1",
|
|
"class-transformer": "*",
|
|
"class-validator": "*",
|
|
"reflect-metadata": "^0.1.12 || ^0.2.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@fastify/static": {
|
|
"optional": true
|
|
},
|
|
"class-transformer": {
|
|
"optional": true
|
|
},
|
|
"class-validator": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"prettier --write",
|
|
"git add -f"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"changelog": {
|
|
"labels": {
|
|
"feature": "Features",
|
|
"bug": "Bug fixes",
|
|
"enhancement": "Enhancements",
|
|
"docs": "Docs",
|
|
"dependencies": "Dependencies",
|
|
"type: code style": "Code style tweaks",
|
|
"breaking change": "Breaking changes"
|
|
}
|
|
}
|
|
}
|