Files
jorgecuadros-platform/package.json
T
gitea-actions 8b8de0fdca
Build and Push Images / Build jorgecuadros-web (push) Successful in 2m0s
Build and Push Images / Build jorgecuadros-api (push) Successful in 2m19s
Deploy on tag / Deploy to galactus (push) Successful in 29s
chore(release): v1.0.23
Cut by rmancinas via the "Cut release" workflow. Pushing the tag triggers build.yml; deploy separately with tag=1.0.23.
2026-08-19 03:10:16 +00:00

23 lines
638 B
JSON

{
"name": "jorgecuadros-platform",
"version": "1.0.23",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:web": "npm run dev -w apps/web",
"dev:api": "npm run start:dev -w apps/api",
"build": "npm run build -ws --if-present",
"prisma:generate": "npm run generate -w packages/database",
"prisma:migrate": "npm run migrate:dev -w packages/database",
"prisma:deploy": "npm run migrate:deploy -w packages/database",
"prisma:studio": "npm run studio -w packages/database",
"version:set": "node scripts/set-version.mjs"
},
"engines": {
"node": ">=20"
}
}