-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 KB
/
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
45
46
47
48
{
"name": "nestjs-bootstrap",
"version": "0.1.0",
"description": "Template for projects with Nest.js framework",
"author": "Yovanny López",
"license": "MIT",
"scripts": {
"generate": "plop",
"prepare": "husky install",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"dependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"plop": "^3.1.1"
},
"devDependencies": {
"husky": "^8.0.0",
"standard-version": "^9.5.0"
},
"engines": {
"node": ">= 16.16.0",
"npm": ">= 8.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Wolox/nestjs-bootstrap"
},
"homepage": "https://github.com/Wolox/nestjs-bootstrap#readme",
"contributors": [
"Yovanny López",
"Javer Benavidez",
"Rene Nicolás Palenque",
"Maximiliano Espindola"
],
"keywords": [
"Accenture",
"Bootstrap",
"Nest.js",
"Node.js",
"Starter",
"Template",
"Wolox"
]
}