package.json 1.1 KB

12345678910111213141516171819
  1. {
  2. "name": "pingvin-share",
  3. "version": "1.13.0",
  4. "scripts": {
  5. "format": "cd frontend && npm run format && cd ../backend && npm run format",
  6. "lint": "cd frontend && npm run lint && cd ../backend && npm run lint",
  7. "version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md",
  8. "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",
  9. "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",
  10. "deploy:dev": "docker buildx build --push --tag stonith404/pingvin-share:development --platform linux/amd64,linux/arm64 ."
  11. },
  12. "devDependencies": {
  13. "conventional-changelog-cli": "^3.0.0"
  14. },
  15. "prettier": {
  16. "singleQuote": false,
  17. "trailingComma": "all"
  18. }
  19. }