Renamed @eslegant/config to @eslegant/js, reflecting the new structure and purpose of it just having rules related to javascript and typescript Moved said package to the new ./configs/ directory. Packages under the ./packages/ directory will be related to ones that aren't related to ESLint itself and/or its configuration.
27 lines
659 B
JSON
27 lines
659 B
JSON
{
|
|
"name": "eslegant-monorepo",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "turbo run lint",
|
|
"lint:monorepo": "eslint .",
|
|
"test": "echo \"NO TESTS CONFIGURED\"",
|
|
"release": "changeset publish",
|
|
"prepare": "husky install"
|
|
},
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@eslegant/js": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.26.2",
|
|
"@commitlint/config-conventional": "^17.7.0",
|
|
"@commitlint/types": "^17.4.4",
|
|
"eslegant": "workspace:*",
|
|
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
|
|
"eslint": "^8.47.0",
|
|
"husky": "^8.0.3",
|
|
"turbo": "^1.10.12"
|
|
}
|
|
}
|