Ghost/package.json
Daniel Lockyer ac3d4d5085
Restored yarn main
- still a bit of a hack right now but it should pull down the latest
  changes
2022-07-21 10:11:54 +02:00

56 lines
1.2 KiB
JSON

{
"name": "ghost-monorepo",
"version": "0.0.0-private",
"description": "The professional publishing platform",
"private": true,
"repository": "https://github.com/TryGhost/Ghost",
"author": "Ghost Foundation",
"license": "MIT",
"workspaces": [
"ghost/*"
],
"eslintIgnore": [
"**/node_modules/**"
],
"scripts": {
"dev": "yarn workspace ghost run dev",
"lint": "yarn workspaces run lint",
"start": "yarn workspace ghost run start",
"test": "yarn workspaces run test",
"main": "git pull && yarn && yarn workspace ghost run main"
},
"resolutions": {
"@tryghost/logging": "2.2.3",
"moment": "2.24.0",
"moment-timezone": "0.5.23"
},
"renovate": {
"extends": [
"@tryghost:quietJS",
"@tryghost:disableTryGhostAutomerge",
"@tryghost:groupTestLint",
"@tryghost:groupCSS",
"@tryghost:groupBuildTools"
],
"ignoreDeps": [
"got",
"intl-messageformat",
"moment",
"moment-timezone",
"oembed-parser",
"simple-dom"
],
"ignorePaths": [
"test"
],
"packageRules": [
{
"packagePatterns": [
"metascraper"
],
"groupName": "metascraper"
}
]
}
}