@smartsoft001/nestjs-stack 2.142.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +18 -0
  2. package/package.json +13 -0
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @smartsoft001/nestjs-stack
2
+
3
+ One install for a NestJS service. Pulls `@smartsoft001/core` plus the module helpers, MongoDB access and the CRUD and auth shells.
4
+
5
+ ```bash
6
+ npm install @smartsoft001/nestjs-stack
7
+ ```
8
+
9
+ This package ships no code of its own. It pins one version of each package below, so a project
10
+ installs the whole set at a single version instead of resolving them one by one:
11
+
12
+ - [`@smartsoft001/core`](https://www.npmjs.com/package/@smartsoft001/core)
13
+ - [`@smartsoft001/nestjs`](https://www.npmjs.com/package/@smartsoft001/nestjs)
14
+ - [`@smartsoft001/mongo`](https://www.npmjs.com/package/@smartsoft001/mongo)
15
+ - [`@smartsoft001/crud-shell-nestjs`](https://www.npmjs.com/package/@smartsoft001/crud-shell-nestjs)
16
+ - [`@smartsoft001/auth-shell-nestjs`](https://www.npmjs.com/package/@smartsoft001/auth-shell-nestjs)
17
+
18
+ The full documentation is at https://emiljuchnikowski.github.io/smartsoft001/docs/installation/.
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@smartsoft001/nestjs-stack",
3
+ "version": "2.142.0",
4
+ "description": "Everything a NestJS service needs from @smartsoft001: the core packages, the module helpers, MongoDB access and the CRUD and auth shells.",
5
+ "license": "MIT",
6
+ "dependencies": {
7
+ "@smartsoft001/core": "2.142.0",
8
+ "@smartsoft001/nestjs": "2.142.0",
9
+ "@smartsoft001/mongo": "2.142.0",
10
+ "@smartsoft001/crud-shell-nestjs": "2.142.0",
11
+ "@smartsoft001/auth-shell-nestjs": "2.142.0"
12
+ }
13
+ }