-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1010 Bytes
/
package.json
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
{
"name": "@sdkconsultoria/nestjs-base",
"version": "0.1.4",
"description": "Crea proyectos de NestJS con Clean Architecture y DDD",
"bin": {
"cli": "bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "release-it"
},
"author": "Camilo Rodriguez",
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^6.0.1",
"@nestjs/common": "^10.4.4",
"@nestjs/core": "^10.4.4",
"@nestjs/platform-express": "^10.4.4",
"@nestjs/testing": "^10.4.4",
"eslint": "^9.11.1",
"jest": "^29.7.0",
"release-it": "^17.6.0"
},
"release-it": {
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
"github": {
"release": true
}
},
"directories": {
"test": "test"
},
"type": "module",
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/hellsythe/nestjs-base"
},
"keywords": [
"nestjs",
"Clean Architecture",
"DDD"
]
}