nestjs-prisma-cli 1.0.1 → 1.0.2
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.
- package/README.md +31 -0
- package/package.json +1 -2
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# 🚀 NestJS + Prisma Project Generator
|
|
2
|
+
|
|
3
|
+
[](#license)
|
|
4
|
+
|
|
5
|
+
A CLI tool to quickly scaffold a **NestJS + Prisma** project with pre-configured **Swagger, Authentication, AWS S3 integration, and Prisma setup**.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 📦 NestJS Prisma Generator CLI
|
|
10
|
+
|
|
11
|
+
**`create-nestjs-prisma`**
|
|
12
|
+
|
|
13
|
+
A CLI tool to quickly scaffold a **NestJS + Prisma** project with built-in support for:
|
|
14
|
+
|
|
15
|
+
- 🔧 Prisma ORM with migrations and seeding
|
|
16
|
+
- 📖 Swagger (OpenAPI) setup
|
|
17
|
+
- 🔑 Authentication boilerplate
|
|
18
|
+
- ☁️ AWS S3 integration
|
|
19
|
+
|
|
20
|
+
Compatible with **Node.js >=18** and **NestJS v10+**.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 📥 Installation
|
|
25
|
+
|
|
26
|
+
### Using `npx` (recommended)
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npm install -g nestjs-prisma-cli
|
|
30
|
+
|
|
31
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nestjs-prisma-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A CLI to generate NestJS + Prisma project boilerplate with Swagger, Auth, and AWS S3 setup",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -29,7 +29,6 @@
|
|
|
29
29
|
"execa": "^9.6.0",
|
|
30
30
|
"fs-extra": "^11.3.1",
|
|
31
31
|
"inquirer": "^8.2.7",
|
|
32
|
-
"nestjs-prisma-generator": "file:nestjs-prisma-generator-1.0.0.tgz",
|
|
33
32
|
"path": "^0.12.7"
|
|
34
33
|
},
|
|
35
34
|
"engines": {
|