emigrate/package.json
dependabot[bot] 6763f338ce chore(deps): bump the commitlint group with 2 updates
Bumps the commitlint group with 2 updates: [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) and [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional).


Updates `@commitlint/cli` from 18.4.3 to 18.6.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v18.6.1/@commitlint/cli)

Updates `@commitlint/config-conventional` from 18.4.3 to 18.6.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v18.6.1/@commitlint/config-conventional)

---
updated-dependencies:
- dependency-name: "@commitlint/cli"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: commitlint
- dependency-name: "@commitlint/config-conventional"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: commitlint
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-14 11:55:46 +01:00

87 lines
2.1 KiB
JSON

{
"name": "@emigrate/root",
"version": "0.0.0",
"private": true,
"description": "A monorepo for Emigrate the modern, modular, and flexible migration tool",
"type": "module",
"scripts": {
"prepare": "bin/prepare",
"build": "turbo run build",
"build:watch": "turbo run build:watch",
"checks": "turbo run checks",
"release": "run-s build && changeset publish",
"format": "prettier --write \"**/*.{ts,tsx,md,json,js,mjs}\"",
"lint": "turbo run lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"changeset": "changeset",
"lint-staged": "lint-staged",
"pre-commit": "run-s build lint-staged",
"commit-msg": "commitlint --edit",
"pre-push": "turbo run checks"
},
"keywords": [],
"author": {
"name": "Aboviq AB",
"email": "dev@aboviq.com",
"url": "https://www.aboviq.com"
},
"contributors": [
{
"name": "Joakim Carlstein",
"email": "joakim@aboviq.com"
}
],
"homepage": "https://github.com/aboviq/emigrate",
"repository": "https://github.com/aboviq/emigrate",
"bugs": "https://github.com/aboviq/emigrate/issues",
"license": "MIT",
"volta": {
"node": "20.9.0",
"pnpm": "8.10.2"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,ts,tsx,html}": [
"xo --fix",
"prettier --write"
],
"*.{json,md,yaml}": [
"prettier --write"
]
},
"xo": {
"space": true,
"prettier": true,
"rules": {
"complexity": 0,
"capitalized-comments": 0
},
"overrides": [
{
"files": "packages/**/*.test.ts",
"rules": {
"@typescript-eslint/no-floating-promises": 0,
"max-params": 0
}
}
]
},
"dependencies": {
"@changesets/cli": "2.27.1",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.1",
"@types/node": "20.10.4",
"glob": "10.3.10",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"tsx": "4.7.0",
"turbo": "1.10.16",
"typescript": "5.3.3",
"xo": "0.56.0"
}
}