-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.57 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
{
"name": "e-commerce-docker-vite-nestjs",
"version": "0.5.0",
"private": false,
"description": "E-commerce app built with Turbo && NestJS && Vite && Docker",
"author": {
"email": "morales.patty.jose@gmail.com",
"name": "Tutuma's Team"
},
"contributors": [
{
"name": "Jose Manuel Morales Patty",
"email": "morales.patty.jose@gmail.com"
},
{
"name": "Ignacio Ruben Villarroel Rodriguez",
"email": "ignaciovillarroel50@gmail.com"
},
{
"name": "Mayerli Santander Sejas",
"email": "mayerlisantander0@gmail.com"
},
{
"name": "Alex Eduardo Paca Meneses",
"email": "fujorita772@gmail.com"
},
{
"name": "Sebasthian Khristian Salinas Pozzo",
"email": "sebasthiansalinaspozzo@gmail.com"
}
],
"license": "MIT",
"workspaces": [
"projects/api",
"projects/client"
],
"main": "projects/api/dist/src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/SoftDevIV-US/llama-gamer.git"
},
"bugs": {
"url": "https://github.com/SoftDevIV-US/llama-gamer/issues"
},
"homepage": "https://github.com/SoftDevIV-US/llama-gamer#readme",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
},
"prisma": {
"schema": "./projects/api/prisma/schema.prisma"
},
"scripts": {
"prepare": "husky install",
"postinstall": "pnpm -F=api prisma:generate",
"dev": "docker compose down && docker volume rm --force llama-gamer_postgres-data && docker compose up -d && pnpm -F=api prisma && pnpm --parallel dev",
"check:code": "pnpm --parallel lint && pnpm --parallel format",
"test": "pnpm --parallel test",
"build": "pnpm --parallel build",
"start": "node projects/api/dist/src/main.js",
"start:dev": "DATABASE_URL=\"postgresql://user:password@localhost:3030/llama_gamer_db\" node projects/api/dist/src/main.js"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.3",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"husky": "^8.0.3",
"semantic-release": "^22.0.8"
}
}