0
Fork 0
mirror of https://github.com/stonith404/pingvin-share.git synced 2025-01-15 01:14:27 -05:00
pingvin-share/package.json

16 lines
1,007 B
JSON
Raw Normal View History

2022-04-25 08:15:17 -05:00
{
"name": "pingvin-share",
2024-11-25 06:44:42 -05:00
"version": "1.6.0",
2022-04-25 08:15:17 -05:00
"scripts": {
"format": "cd frontend && npm run format && cd ../backend && npm run format",
2022-10-17 16:05:39 -05:00
"lint": "cd frontend && npm run lint && cd ../backend && npm run lint",
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md",
2022-12-30 12:59:05 -05:00
"release:patch": "cd backend && npm version patch --commit-hooks false && cd ../frontend && npm version patch --commit-hooks false && cd .. && git add . && npm version patch --force -m 'release: %s' && git push && git push --tags",
"release:minor": "cd backend && npm version minor --commit-hooks false && cd ../frontend && npm version minor --commit-hooks false && cd .. && git add . && npm version minor --force -m 'release: %s' && git push && git push --tags",
2022-10-31 04:28:46 -05:00
"deploy:dev": "docker buildx build --push --tag stonith404/pingvin-share:development --platform linux/amd64,linux/arm64 ."
},
"devDependencies": {
"conventional-changelog-cli": "^3.0.0"
2022-04-25 08:15:17 -05:00
}
}