mirror of
https://github.com/hantsy/nestjs-rest-sample.git
synced 2025-12-08 20:36:27 +00:00
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 8.48.0 to 8.48.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.1/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-version: 8.48.1 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
97 lines
2.7 KiB
JSON
97 lines
2.7 KiB
JSON
{
|
|
"name": "nestjs-sample",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"author": "",
|
|
"private": true,
|
|
"license": "UNLICENSED",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "nest build",
|
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main",
|
|
"lint": "eslint \"{src,apps,libs,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",
|
|
"prepare": "husky"
|
|
},
|
|
"dependencies": {
|
|
"@nestjs/common": "^11.1.5",
|
|
"@nestjs/config": "^4.0.2",
|
|
"@nestjs/core": "^11.1.5",
|
|
"@nestjs/jwt": "^11.0.0",
|
|
"@nestjs/passport": "^11.0.5",
|
|
"@nestjs/platform-express": "^11.1.5",
|
|
"@sendgrid/mail": "^8.1.5",
|
|
"bcrypt": "^6.0.0",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.2",
|
|
"mongoose": "^9.0.0",
|
|
"passport": "^0.7.0",
|
|
"passport-jwt": "^4.0.1",
|
|
"passport-local": "^1.0.0",
|
|
"reflect-metadata": "^0.2.2",
|
|
"rimraf": "^6.0.1",
|
|
"rxjs": "^7.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^20.0.0",
|
|
"@commitlint/config-conventional": "^20.0.0",
|
|
"@eslint/eslintrc": "^3.3.1",
|
|
"@eslint/js": "^9.32.0",
|
|
"@golevelup/ts-jest": "^0.7.0",
|
|
"@nestjs/cli": "^11.0.10",
|
|
"@nestjs/schematics": "^11.0.7",
|
|
"@nestjs/testing": "^11.1.5",
|
|
"@types/bcrypt": "^6.0.0",
|
|
"@types/express": "^5.0.3",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.2.0",
|
|
"@types/passport-jwt": "^4.0.1",
|
|
"@types/passport-local": "^1.0.38",
|
|
"@types/supertest": "^6.0.3",
|
|
"@typescript-eslint/eslint-plugin": "8.48.1",
|
|
"@typescript-eslint/parser": "8.48.1",
|
|
"eslint": "9.39.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"globals": "^16.3.0",
|
|
"husky": "^9.1.7",
|
|
"jest": "^30.0.5",
|
|
"jest-mock-extended": "^4.0.0",
|
|
"prettier": "^3.6.2",
|
|
"supertest": "^7.1.4",
|
|
"ts-jest": "^29.4.1",
|
|
"ts-loader": "^9.5.2",
|
|
"ts-mockito": "^2.6.1",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": "src",
|
|
"testRegex": ".spec.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"coverageDirectory": "../coverage",
|
|
"coveragePathIgnorePatterns": [
|
|
"/node_modules/",
|
|
".*(stub.ts)$"
|
|
],
|
|
"testEnvironment": "node",
|
|
"preset": "ts-jest"
|
|
}
|
|
}
|