Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

83
node_modules/@nestjs/serve-static/package.json generated vendored Normal file
View File

@@ -0,0 +1,83 @@
{
"name": "@nestjs/serve-static",
"version": "5.0.4",
"description": "Nest - modern, fast, powerful node.js web framework (@serve-static)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"build": "npm run build:lib",
"build:lib": "tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prerelease": "npm run build",
"release": "release-it",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"prepare": "husky"
},
"peerDependencies": {
"@fastify/static": "^8.0.4",
"@nestjs/common": "^11.0.2",
"@nestjs/core": "^11.0.2",
"express": "^5.0.1",
"fastify": "^5.2.1"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"fastify": {
"optional": true
},
"@fastify/static": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "20.1.0",
"@commitlint/config-angular": "20.0.0",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.37.0",
"@fastify/static": "8.2.0",
"@nestjs/common": "11.1.6",
"@nestjs/core": "11.1.6",
"@nestjs/platform-express": "11.1.6",
"@nestjs/platform-fastify": "11.1.6",
"@nestjs/testing": "11.1.6",
"@types/jest": "30.0.0",
"@types/node": "22.18.9",
"@types/supertest": "6.0.3",
"eslint": "9.37.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"express": "5.1.0",
"fastify": "5.6.1",
"globals": "16.4.0",
"husky": "9.1.7",
"jest": "30.2.0",
"lint-staged": "16.2.3",
"prettier": "3.6.2",
"reflect-metadata": "0.2.2",
"release-it": "19.0.5",
"rxjs": "7.8.2",
"supertest": "7.1.4",
"ts-jest": "29.4.5",
"typescript": "5.9.3",
"typescript-eslint": "8.46.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs/serve-static"
},
"dependencies": {
"path-to-regexp": "8.3.0"
}
}