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>
61 lines
1.7 KiB
JSON
61 lines
1.7 KiB
JSON
{
|
|
"name": "@nestjs/jwt",
|
|
"version": "11.0.2",
|
|
"description": "Nest - modern, fast, powerful node.js web framework (@jwt)",
|
|
"author": "Kamil Mysliwiec",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"format": "prettier --write \"**/*.ts\"",
|
|
"lint": "eslint \"lib/**/*.ts\" --fix",
|
|
"test": "jest --config=jest.json",
|
|
"test:watch": "jest --config=jest.json --watch",
|
|
"test:coverage": "jest --config=jest.json --coverage --coverageDirectory=coverage",
|
|
"build": "rm -rf dist && tsc -p tsconfig.build.json",
|
|
"precommit": "lint-staged",
|
|
"prepublish:npm": "npm run build",
|
|
"publish:npm": "npm publish --access public",
|
|
"prerelease": "npm run build",
|
|
"release": "release-it",
|
|
"prepare": "husky"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "20.2.0",
|
|
"@commitlint/config-angular": "20.2.0",
|
|
"@eslint/eslintrc": "3.3.3",
|
|
"@eslint/js": "9.39.1",
|
|
"@nestjs/common": "11.1.9",
|
|
"@nestjs/core": "11.1.9",
|
|
"@nestjs/testing": "11.1.9",
|
|
"@types/jest": "30.0.0",
|
|
"@types/node": "24.10.1",
|
|
"eslint": "9.39.1",
|
|
"eslint-config-prettier": "10.1.8",
|
|
"eslint-plugin-prettier": "5.5.4",
|
|
"globals": "16.5.0",
|
|
"husky": "9.1.7",
|
|
"jest": "30.2.0",
|
|
"lint-staged": "16.2.7",
|
|
"prettier": "3.7.4",
|
|
"reflect-metadata": "0.2.2",
|
|
"release-it": "19.0.6",
|
|
"rxjs": "7.8.2",
|
|
"ts-jest": "29.4.6",
|
|
"typescript": "5.9.3",
|
|
"typescript-eslint": "8.48.1"
|
|
},
|
|
"dependencies": {
|
|
"@types/jsonwebtoken": "9.0.10",
|
|
"jsonwebtoken": "9.0.3"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{ts,json}": []
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nestjs/jwt"
|
|
}
|
|
}
|