-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.77 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "distribution-center",
"version": "1.6.0",
"private": false,
"description": "An API for a distribution center",
"keywords": [
"API",
"distribution center",
"C#",
"ASP.NET Core",
"Clean Architecture",
"CQRS",
"MediatR",
"Result",
"Dapper ORM",
"PostgreSQL",
"Docker Compose",
"Swagger",
"FluentValidation",
"AutoMapper",
"Serilog"
],
"licenese": "MIT",
"author": {
"email": "morales.patty.jose@gmail.com",
"name": "Los Curiosos"
},
"contributors": [
{
"name": "Jose Manuel Morales Patty",
"email": "morales.patty.jose@gmail.com"
},
{
"name": "Jefersson Coronel Lavadenz",
"email": "jefersson.coronel.13622689@usalesiana.edu.bo"
},
{
"name": "Karina Aguirre Janco",
"email": "karina.aguirre.9491656@usalesiana.edu.bo"
},
{
"name": "Mayerli Santander Sejas",
"email": "mayerlisantander0@gmail.com"
},
{
"name": "Miguel Angel Romero Sandoval",
"email": "miguel.romero@fundacion-jala.org"
},
{
"name": "Jorge Heredia Bazoalto",
"email": "jorge.heredia@fundacion-jala.org"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Programming6-projects/LosCuriosos.git"
},
"bugs": {
"url": "https://github.com/Programming6-projects/LosCuriosos/issues"
},
"homepage": "https://github.com/Programming6-projects/LosCuriosos#readme",
"scripts": {
"db:restore": "docker compose down && docker volume rm --force loscuriosos_postgres_data",
"start:db": "docker compose down && docker compose up -d",
"start:dev": "pnpm start:db && dotnet watch run --project ./src/DistributionCenter.Api",
"report": "dotnet reportgenerator",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.5",
"semantic-release": "^23.1.1"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}