2014-02-09 10:29:23 -05:00
|
|
|
{
|
2022-07-20 09:10:38 -05:00
|
|
|
"name": "ghost-monorepo",
|
|
|
|
"version": "0.0.0-private",
|
2017-07-27 03:26:31 -05:00
|
|
|
"description": "The professional publishing platform",
|
2022-07-20 09:10:38 -05:00
|
|
|
"private": true,
|
|
|
|
"repository": "https://github.com/TryGhost/Ghost",
|
2015-05-05 18:54:23 -05:00
|
|
|
"author": "Ghost Foundation",
|
2015-05-25 23:00:32 -05:00
|
|
|
"license": "MIT",
|
2022-07-20 09:10:38 -05:00
|
|
|
"workspaces": [
|
|
|
|
"ghost/*"
|
|
|
|
],
|
2022-08-02 05:30:15 -05:00
|
|
|
"monorepo": {
|
|
|
|
"public": false,
|
|
|
|
"repo": "https://github.com/TryGhost/Ghost",
|
|
|
|
"scope": "@tryghost"
|
|
|
|
},
|
2022-07-20 09:10:38 -05:00
|
|
|
"eslintIgnore": [
|
|
|
|
"**/node_modules/**"
|
|
|
|
],
|
2015-05-05 18:54:23 -05:00
|
|
|
"scripts": {
|
2022-07-20 09:10:38 -05:00
|
|
|
"dev": "yarn workspace ghost run dev",
|
2022-07-24 05:40:40 -05:00
|
|
|
"fix:admin": "yarn cache clean && cd ghost/core/core/admin && rm -rf node_modules tmp dist && yarn && cd ../../../..",
|
|
|
|
"fix:backend": "yarn cache clean && rm -rf node_modules && yarn",
|
|
|
|
"fix": "yarn fix:admin && yarn fix:backend",
|
2022-07-27 07:21:31 -05:00
|
|
|
"knex-migrator": "yarn workspace ghost run knex-migrator",
|
2022-07-20 09:10:38 -05:00
|
|
|
"lint": "yarn workspaces run lint",
|
2022-07-24 05:46:07 -05:00
|
|
|
"setup": "yarn && yarn workspace ghost run setup",
|
2022-07-20 10:37:59 -05:00
|
|
|
"start": "yarn workspace ghost run start",
|
2022-07-21 03:11:54 -05:00
|
|
|
"test": "yarn workspaces run test",
|
2022-07-25 11:21:04 -05:00
|
|
|
"main": "yarn main:monorepo && yarn main:submodules",
|
|
|
|
"main:monorepo": "git checkout main && git pull ${GHOST_UPSTREAM:-origin} main && yarn && yarn workspace ghost run grunt subgrunt:init",
|
|
|
|
"main:submodules": "git submodule sync && git submodule update && git submodule foreach \"git checkout main && git pull ${GHOST_UPSTREAM:-origin} main && yarn\""
|
2019-07-30 08:06:26 -05:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2022-06-01 09:44:02 -05:00
|
|
|
"@tryghost/logging": "2.2.3",
|
2020-07-28 11:55:23 -05:00
|
|
|
"moment": "2.24.0",
|
2019-07-30 08:06:26 -05:00
|
|
|
"moment-timezone": "0.5.23"
|
2022-07-20 09:10:38 -05:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
]
|
2015-05-05 18:54:23 -05:00
|
|
|
}
|
2014-02-09 10:29:23 -05:00
|
|
|
}
|