Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ We are using the following conventions to identify what the commit is doing:
## Stay in touch

- Author - [Liaqat Saeed](https://liaqatsaeed6777.com)
- Website - [https://nestjs.com](https://liaqatsaeed6777.com/)
- Twitter - [@nestframework](https://twitter.com/nestframework)
- Twitter - [@liaqatsaeed6777](https://twitter.com/liaqatsaeed6777)


## Authentication
Expand All @@ -60,7 +59,7 @@ We'll start by generating an **AuthModule** and in it, an **AuthService** and an

### Commands

- `$ nest g module auth
$ nest g controller auth
$ nest g service auth`
- `$ nest g module MODULE_NAME` creates module
- `$ nest g controller CONTROLLER_NAME` creates controller
- `$ nest g service SERVICE_NAME` creates service

7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/jwt": "^10.1.0",
"@nestjs/mongoose": "^10.0.1",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/serve-static": "^4.0.0",
"mongoose": "^7.4.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
Expand Down Expand Up @@ -76,5 +79,9 @@
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"npm": "8.1.0",
"node": "v17.0.0"
}
}
Loading