Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Kalebesamuel
Last active November 2, 2021 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kalebesamuel/545a5d53d145ffe8e2a29dcaef7a77f1 to your computer and use it in GitHub Desktop.
Save Kalebesamuel/545a5d53d145ffe8e2a29dcaef7a77f1 to your computer and use it in GitHub Desktop.
Project's package.json from a project using cz-jira-smart-commit-validated
{
"name": "project-name",
"version": "1.0.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1 ",
"lint": "eslint .",
"nibble": "eslint-nibble ../app_motorista/",
"prettier:check": "prettier --config .prettierrc --check \"application/**/*.{js}\"",
"prepare": "husky install",
"update-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && chmod -x .husky/post-commit && HUSKY=0 git commit --amend --no-edit --no-verify && chmod +x .husky/post-commit"
},
"dependencies": {
"chalk": "^2.4.1",
"commitizen": "^4.0.3",
"conventional-commit-types": "^3.0.0",
"lodash.map": "^4.5.1",
"longest": "^2.0.1",
"word-wrap": "^1.0.3"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/eslint-parser": "^7.15.8",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"cosmiconfig": "^5.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-nibble": "^7.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"husky": "^7.0.0",
"lint-staged": "7.0.5",
"prettier": "2.4.1",
"semantic-release": "^15.13.3",
"semver": "^6.2.0",
"validate-commit-msg": "^2.14.0",
"rxjs-compat": "^6.6.7"
},
"optionalDependencies": {
"@commitlint/load": ">6.1.1"
},
"lint-staged": {
"**/*.{js, jsx, ts, tsx}": [
"yarn eslint",
"yarn prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-jira-smart-commit-validated",
"disableScopeLowerCase": false,
"disableSubjectLowerCase": false,
"maxHeaderWidth": 100,
"maxLineWidth": 100,
"defaultType": "",
"defaultScope": "",
"defaultSubject": "",
"defaultBody": "",
"defaultIssuesPrefix": "EVOLOG",
"enableMultiIssuesIdByCommit": false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment