-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "nestcraftx",
"version": "1.0.0",
"description": "Modern CLI to generate scalable NestJS projects with Clean Architecture (FULL) and MVP mode (LIGHT) - Enhanced with auto-generated .env secrets, complete ORM support, and entity relations",
"main": "bin/nestcraft.js",
"bin": {
"nestcraftx": "bin/nestcraft.js"
},
"scripts": {
"test": "jest --runInBand tests/unit",
"test:unit": "jest --runInBand tests/unit",
"test:e2e": "jest --runInBand tests/e2e",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/august-dev-pro/NestCraftX.git"
},
"keywords": [
"nestjs",
"cli",
"starter",
"generator",
"clean architecture",
"ddd",
"scaffold",
"prisma",
"typeorm",
"mongoose",
"jwt",
"swagger",
"docker",
"nestjs-cli"
],
"author": "Ablanhou Augustin Selete",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"inquirer": "^12.10.0",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"jest": "^30.4.2",
"vitepress": "^1.6.4"
}
}