2014-02-09 10:29:23 -05:00
|
|
|
{
|
2022-07-20 16:10:38 +02:00
|
|
|
"name": "ghost-monorepo",
|
|
|
|
"version": "0.0.0-private",
|
2017-07-27 12:26:31 +04:00
|
|
|
"description": "The professional publishing platform",
|
2022-07-20 16:10:38 +02:00
|
|
|
"private": true,
|
|
|
|
"repository": "https://github.com/TryGhost/Ghost",
|
2015-05-05 23:54:23 +00:00
|
|
|
"author": "Ghost Foundation",
|
2015-05-25 21:00:32 -07:00
|
|
|
"license": "MIT",
|
2022-07-20 16:10:38 +02:00
|
|
|
"workspaces": [
|
2023-06-13 12:53:53 +02:00
|
|
|
"apps/*",
|
2022-07-20 16:10:38 +02:00
|
|
|
"ghost/*"
|
|
|
|
],
|
2022-08-02 12:30:15 +02:00
|
|
|
"monorepo": {
|
|
|
|
"public": false,
|
2022-08-02 15:30:27 +02:00
|
|
|
"internalPackages": true,
|
2022-08-02 12:30:15 +02:00
|
|
|
"repo": "https://github.com/TryGhost/Ghost",
|
|
|
|
"scope": "@tryghost"
|
|
|
|
},
|
2022-07-20 16:10:38 +02:00
|
|
|
"eslintIgnore": [
|
|
|
|
"**/node_modules/**"
|
|
|
|
],
|
2015-05-05 23:54:23 +00:00
|
|
|
"scripts": {
|
2023-06-15 15:42:39 +02:00
|
|
|
"archive": "yarn workspace ghost run archive",
|
2023-07-12 13:42:39 +02:00
|
|
|
"build": "nx run-many -t build",
|
2022-08-18 15:50:14 +02:00
|
|
|
"dev:debug": "DEBUG_COLORS=true DEBUG=@tryghost*,ghost:* yarn dev",
|
2023-07-05 08:16:46 +02:00
|
|
|
"dev:admin": "node .github/scripts/dev.js --admin",
|
|
|
|
"dev:ghost": "node .github/scripts/dev.js --ghost",
|
|
|
|
"dev": "node .github/scripts/dev.js",
|
2022-08-03 16:06:13 +02:00
|
|
|
"fix": "yarn cache clean && rm -rf node_modules && yarn",
|
2022-07-27 14:21:31 +02:00
|
|
|
"knex-migrator": "yarn workspace ghost run knex-migrator",
|
2023-07-12 13:42:39 +02:00
|
|
|
"setup": "yarn && git submodule update --init",
|
|
|
|
"lint": "nx run-many -t lint",
|
|
|
|
"test": "nx run-many -t test",
|
|
|
|
"test:unit": "nx run-many -t test:unit",
|
2022-07-25 18:21:04 +02:00
|
|
|
"main": "yarn main:monorepo && yarn main:submodules",
|
2022-08-03 17:14:37 +02:00
|
|
|
"main:monorepo": "git checkout main && git pull ${GHOST_UPSTREAM:-origin} main && yarn",
|
2022-08-08 13:28:31 +02:00
|
|
|
"main:submodules": "git submodule sync && git submodule update && git submodule foreach \"git checkout main && git pull ${GHOST_UPSTREAM:-origin} main && yarn\"",
|
2023-07-12 13:42:39 +02:00
|
|
|
"prepare": "husky install .github/hooks && nx run-many -t build:ts"
|
2019-07-30 18:36:26 +05:30
|
|
|
},
|
|
|
|
"resolutions": {
|
2023-01-20 12:51:03 +01:00
|
|
|
"@elastic/elasticsearch": "8.5.0",
|
2023-06-22 09:51:25 +02:00
|
|
|
"@tiptap/extension-bubble-menu": "2.0.0-beta.61",
|
|
|
|
"@tiptap/extension-floating-menu": "2.0.0-beta.56",
|
2023-04-05 13:22:00 +02:00
|
|
|
"@tryghost/errors": "1.2.24",
|
2023-04-07 11:14:57 +00:00
|
|
|
"@tryghost/logging": "2.4.4",
|
2020-07-28 17:55:23 +01:00
|
|
|
"moment": "2.24.0",
|
2023-06-22 09:51:25 +02:00
|
|
|
"moment-timezone": "0.5.23",
|
2023-07-10 15:41:50 +00:00
|
|
|
"prosemirror-state": "1.4.3",
|
2023-07-13 11:21:57 +00:00
|
|
|
"prosemirror-model": "1.19.3",
|
2023-07-10 15:54:22 +00:00
|
|
|
"prosemirror-transform": "1.7.3"
|
2022-07-20 16:10:38 +02:00
|
|
|
},
|
|
|
|
"renovate": {
|
|
|
|
"extends": [
|
|
|
|
"@tryghost:quietJS",
|
|
|
|
"@tryghost:disableTryGhostAutomerge",
|
|
|
|
"@tryghost:groupTestLint",
|
|
|
|
"@tryghost:groupCSS",
|
|
|
|
"@tryghost:groupBuildTools"
|
|
|
|
],
|
2023-04-05 10:22:55 +02:00
|
|
|
"rebaseWhen": "never",
|
2022-07-20 16:10:38 +02:00
|
|
|
"ignoreDeps": [
|
|
|
|
"got",
|
|
|
|
"intl-messageformat",
|
|
|
|
"moment",
|
|
|
|
"moment-timezone",
|
2022-08-03 16:02:15 +02:00
|
|
|
"simple-dom",
|
|
|
|
"ember-drag-drop",
|
|
|
|
"normalize.css",
|
|
|
|
"validator",
|
|
|
|
"codemirror",
|
2022-12-13 15:53:27 +01:00
|
|
|
"faker",
|
2023-03-28 11:07:28 -07:00
|
|
|
"ember-cli-code-coverage"
|
2022-07-20 16:10:38 +02:00
|
|
|
],
|
|
|
|
"ignorePaths": [
|
2022-08-03 16:02:15 +02:00
|
|
|
"test",
|
|
|
|
"ghost/admin/lib/koenig-editor/package.json"
|
2022-07-20 16:10:38 +02:00
|
|
|
],
|
|
|
|
"packageRules": [
|
2022-08-05 14:24:46 +02:00
|
|
|
{
|
|
|
|
"packagePatterns": [
|
|
|
|
"@tryghost"
|
|
|
|
],
|
|
|
|
"groupName": "@tryghost"
|
|
|
|
},
|
2022-07-20 16:10:38 +02:00
|
|
|
{
|
|
|
|
"packagePatterns": [
|
|
|
|
"metascraper"
|
|
|
|
],
|
|
|
|
"groupName": "metascraper"
|
2022-08-03 16:02:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"groupName": "ember-basic-dropdown addons",
|
2022-08-09 15:48:33 +02:00
|
|
|
"packagePatterns": [
|
|
|
|
"^ember-basic",
|
|
|
|
"^ember-power"
|
|
|
|
]
|
2022-08-03 16:02:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"groupName": "ember core",
|
2022-08-09 15:48:33 +02:00
|
|
|
"packageNames": [
|
|
|
|
"ember-source",
|
|
|
|
"ember-cli",
|
|
|
|
"ember-data"
|
|
|
|
]
|
2022-08-03 16:02:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"groupName": "disable css",
|
2022-08-09 15:48:33 +02:00
|
|
|
"matchFiles": [
|
|
|
|
"ghost/admin/package.json"
|
|
|
|
],
|
2022-08-03 16:02:15 +02:00
|
|
|
"packagePatterns": [
|
2022-08-09 15:48:33 +02:00
|
|
|
"^postcss",
|
|
|
|
"^css"
|
2022-08-03 16:02:15 +02:00
|
|
|
],
|
|
|
|
"packageNames": [
|
2022-08-09 15:48:33 +02:00
|
|
|
"autoprefixer",
|
|
|
|
"ember-cli-postcss"
|
2022-08-03 16:02:15 +02:00
|
|
|
],
|
|
|
|
"enabled": false
|
2022-07-20 16:10:38 +02:00
|
|
|
}
|
|
|
|
]
|
2022-07-25 19:28:41 +02:00
|
|
|
},
|
2022-08-08 13:28:31 +02:00
|
|
|
"lint-staged": {
|
|
|
|
"*.js": "eslint"
|
|
|
|
},
|
2022-07-25 19:28:41 +02:00
|
|
|
"devDependencies": {
|
2023-06-09 10:10:17 +00:00
|
|
|
"concurrently": "8.2.0",
|
2023-06-21 10:07:32 +01:00
|
|
|
"eslint-plugin-ghost": "3.2.0",
|
2023-01-03 11:14:45 +00:00
|
|
|
"husky": "8.0.3",
|
2023-07-10 15:58:58 +00:00
|
|
|
"lint-staged": "13.2.3",
|
2023-07-13 22:57:32 +00:00
|
|
|
"nx": "16.5.2",
|
2023-05-03 13:58:03 -04:00
|
|
|
"ts-node": "10.9.1"
|
2015-05-05 23:54:23 +00:00
|
|
|
}
|
2014-02-09 10:29:23 -05:00
|
|
|
}
|