{"id":22120567,"url":"https://github.com/jorgecoke/pack-a-punch-npm","last_synced_at":"2026-04-10T15:39:02.194Z","repository":{"id":229858481,"uuid":"777814609","full_name":"JorgeCoke/pack-a-punch-npm","owner":"JorgeCoke","description":"🦾🔋 Pack a punch your NPM project, following standards and specifications, linting and formatting your code, automating Git work flows, and improving your styles with emojis 🦄","archived":false,"fork":false,"pushed_at":"2025-02-07T09:37:59.000Z","size":779,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-07T10:29:20.497Z","etag":null,"topics":["commitizen","commitlint","cz","emoji","eslint","formatter","git","hooks","husky","lint","linter","npm","prettier"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JorgeCoke.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-26T14:53:44.000Z","updated_at":"2025-02-07T09:38:02.000Z","dependencies_parsed_at":"2024-03-26T16:55:40.087Z","dependency_job_id":"b4c75111-85af-4d46-83a9-069eba31f2c7","html_url":"https://github.com/JorgeCoke/pack-a-punch-npm","commit_stats":null,"previous_names":["jorgecoke/pack-a-punch-npm"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JorgeCoke%2Fpack-a-punch-npm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JorgeCoke%2Fpack-a-punch-npm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JorgeCoke%2Fpack-a-punch-npm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JorgeCoke%2Fpack-a-punch-npm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JorgeCoke","download_url":"https://codeload.github.com/JorgeCoke/pack-a-punch-npm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245224003,"owners_count":20580362,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["commitizen","commitlint","cz","emoji","eslint","formatter","git","hooks","husky","lint","linter","npm","prettier"],"created_at":"2024-12-01T14:27:40.232Z","updated_at":"2025-12-30T22:36:57.453Z","avatar_url":"https://github.com/JorgeCoke.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg alt=\"Pack a Punch logo\" src=\"repo-logo.png\" width=\"512\"/\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003e\n🦾🔋 Pack a Punch: NPM Project Template Boilerplate\n\u003c/h1\u003e\n\n\u003ch5 align=\"center\"\u003e\nPack a punch your project, following standards and specifications, linting and formatting your code, automating Git work flows, and improving your styles with emojis 🦄\n\u003c/h5\u003e\n\n## ✨ Features\n\n- 🛡 [Zod](https://zod.dev/) **validator**\n- 🎨 The best **linter** and **formatter**, [BiomeJS](https://biomejs.dev/)\n- 🐶 Pre-Commit and Commit [Husky](https://github.com/typicode/husky) **hooks** (Runs linter and formatter before any commit against staged files only!)\n- 💄 Commit **nomenclature rules** following [Conventional Commit Format](https://commitlint.js.org/) and [Commitizen CLI](https://github.com/commitizen/cz-cli) (emoji [powered](https://github.com/folke/devmoji))\n- 🚀 **Release management policy** with [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version), including automagically CHANGELOG.md generation, version bumping and GitTags\n- 🔦 Included [npm-check](https://www.npmjs.com/package/npm-check) to check for **outdated**, incorrect, and unused dependencies.\n- 🥷🏻 Included [better-npm-audit](https://www.npmjs.com/package/better-npm-audit) to check for dependency **vulnerabilities**\n\n## 🛠 Getting Started\n\n```\nnpm ci                  # Install dependencies\ncp .env.example .env    # Generate enviroment variables\nnpm run dev             # Launch project locally\n```\n\n## 🎨 Linter \u0026 Formatter\n\n```\nnpm run biome        # Run Biome\n```\n\n## ⛩ Git Commit with Commitizen\n\n```\ngit add .            # Add files\nnpm run cz           # Commit with Commitizen CLI\n```\n\n## 🚀 Release a new version\n\n```\nnpm run release             # Bump version and generate CHANGELOG.md\ngit push --follow-tags      # Push changes and GitTag to origin\n```\n\n## 🔦 Check vulnerabilities and update outdated dependencies\n\n```\nnpm run npm:audit     # Check dependency vulnerabilities\nnpm run npm:check     # Check outdated dependencies\n```\n\n## 🏗 Build and launch\n\n```\nnpm run build         # Compile project\nnpm run start         # Launch\nnpm run package       # Package an artifact\n```\n\n---\n\n#### How to migrate this configuration to an existing project\n\n1. Install dependencies\n\n```bash\nnpm install --save-dev @biomejs/biome @commitlint/cli @commitlint/config-conventional commit-and-tag-version commitizen cz-conventional-changelog devmoji husky lint-staged\n```\n\n2. Copy the following scripts to your package.json file:\n\n- biome\n- release\n- package\n- cz\n- npm:check\n- npm:audit\n- prepare\n\n3. Copy the \"config\", \"commitlint\" and \"lint-staged\" configuration objects to your package.json\n\n4. Copy the corresponding config files\n\n```bash\ncp -R {.husky,.vscode,biome.json} \u003cYOUR_DESTINATION_FOLDER\u003e\n```\n\n5. Prepare husky tools running:\n\n```bash\nnpm run prepare\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjorgecoke%2Fpack-a-punch-npm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjorgecoke%2Fpack-a-punch-npm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjorgecoke%2Fpack-a-punch-npm/lists"}