
* Update Typescript to 5.1.3 * Update Turborepo * Update turborepo eslint config * Update ESLint and unify version * Changeset * unify eslint rules and node types and moved them to root * unify app-sdk version * unify codegen packages across monorepo * unify graphql package * update lock * enabled eslint during invoices build with next build * Format package jsons * push scripts to the top of package json
24 lines
578 B
JavaScript
24 lines
578 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import("syncpack").RcFile} */
|
|
const config = {
|
|
filter: "",
|
|
indent: " ",
|
|
semverGroups: [],
|
|
semverRange: "",
|
|
dependencyTypes: ["dev", "overrides", "peer", "prod", "resolutions", "workspace"],
|
|
sortAz: [
|
|
"scripts",
|
|
"contributors",
|
|
"keywords",
|
|
"dependencies",
|
|
"devDependencies",
|
|
"peerDependencies",
|
|
"resolutions",
|
|
],
|
|
sortFirst: ["name", "description", "version", "author", "scripts"],
|
|
source: ["apps/*/package.json", "packages/*/package.json", "package.json"],
|
|
versionGroups: [],
|
|
};
|
|
|
|
module.exports = config;
|