2022-07-20 17:10:38 +03:00
|
|
|
{
|
|
|
|
"name": "ghost",
|
2024-01-24 20:37:39 +03:00
|
|
|
"version": "5.76.2",
|
2022-07-20 17:10:38 +03:00
|
|
|
"description": "The professional publishing platform",
|
|
|
|
"author": "Ghost Foundation",
|
|
|
|
"homepage": "https://ghost.org",
|
|
|
|
"keywords": [
|
|
|
|
"ghost",
|
|
|
|
"blog",
|
|
|
|
"cms",
|
|
|
|
"headless",
|
|
|
|
"content",
|
|
|
|
"markdown"
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/TryGhost/Ghost.git"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/TryGhost/Ghost/issues",
|
|
|
|
"contributors": "https://github.com/TryGhost/Ghost/graphs/contributors",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2023-06-15 16:42:39 +03:00
|
|
|
"archive": "npm pack",
|
2023-07-13 12:14:08 +03:00
|
|
|
"dev": "node --watch index.js",
|
2023-07-12 14:42:39 +03:00
|
|
|
"build": "postcss core/frontend/public/ghost.css --no-map --use cssnano -o core/frontend/public/ghost.min.css",
|
2022-07-20 18:37:59 +03:00
|
|
|
"test": "yarn test:unit",
|
2023-10-05 13:09:39 +03:00
|
|
|
"test:base": "mocha --reporter dot --require=./test/utils/overrides.js --exit --trace-warnings --recursive --extension=test.js",
|
2023-06-16 10:44:04 +03:00
|
|
|
"test:single": "yarn test:base --timeout=60000",
|
2022-07-20 17:10:38 +03:00
|
|
|
"test:all": "yarn test:unit && yarn test:integration && yarn test:e2e && yarn lint",
|
|
|
|
"test:debug": "DEBUG=ghost:test* yarn test",
|
|
|
|
"test:unit": "c8 yarn test:unit:base",
|
2023-06-02 10:36:28 +03:00
|
|
|
"test:unit:base": "yarn test:base './test/unit' --timeout=2000",
|
|
|
|
"test:integration": "yarn test:base './test/integration' --timeout=10000",
|
|
|
|
"test:e2e": "yarn test:base ./test/e2e-* --timeout=15000",
|
|
|
|
"test:regression": "yarn test:base './test/regression' --timeout=60000",
|
2023-10-13 14:42:39 +03:00
|
|
|
"test:browser": "NODE_ENV=testing-browser playwright test",
|
2023-03-27 13:04:47 +03:00
|
|
|
"test:browser:admin": "NODE_ENV=testing-browser playwright test test/e2e-browser --project=admin",
|
|
|
|
"test:browser:portal": "NODE_ENV=testing-browser playwright test test/e2e-browser --project=portal",
|
2022-12-06 13:30:07 +03:00
|
|
|
"test:browser:setup": "npx playwright install",
|
2023-06-16 10:44:04 +03:00
|
|
|
"test:ci:e2e": "c8 -c ./.c8rc.e2e.json -o coverage-e2e yarn test:e2e -b --retries=2 --reporter=./test/utils/mocha-retry-reporter.js",
|
|
|
|
"test:ci:regression": "yarn test:regression -b --retries=2 --reporter=./test/utils/mocha-retry-reporter.js",
|
|
|
|
"test:ci:integration": "c8 -c ./.c8rc.e2e.json -o coverage-integration --lines 57 --functions 47 --branches 77 --statements 57 yarn test:integration -b --retries=2 --reporter=./test/utils/mocha-retry-reporter.js",
|
2022-07-20 17:10:38 +03:00
|
|
|
"test:unit:slow": "yarn test:unit --reporter=mocha-slow-test-reporter",
|
|
|
|
"test:int:slow": "yarn test:integration --reporter=mocha-slow-test-reporter",
|
|
|
|
"test:e2e:slow": "yarn test:e2e --reporter=mocha-slow-test-reporter",
|
2023-10-05 13:09:39 +03:00
|
|
|
"test:reg:slow": "mocha --reporter dot --require=./test/utils/overrides.js --exit --trace-warnings --recursive --extension=test.js './test/regression' --timeout=60000 --reporter=mocha-slow-test-reporter",
|
2023-03-22 19:05:10 +03:00
|
|
|
"lint:server": "eslint --ignore-path .eslintignore 'core/server/**/*.js' 'core/*.js' '*.js' --cache",
|
|
|
|
"lint:shared": "eslint --ignore-path .eslintignore 'core/shared/**/*.js' --cache",
|
|
|
|
"lint:frontend": "eslint --ignore-path .eslintignore 'core/frontend/**/*.js' --cache",
|
|
|
|
"lint:test": "eslint -c test/.eslintrc.js --ignore-path test/.eslintignore 'test/**/*.js' --cache",
|
2022-07-20 17:10:38 +03:00
|
|
|
"lint:code": "yarn lint:server && yarn lint:shared && yarn lint:frontend",
|
|
|
|
"lint": "yarn lint:server && yarn lint:shared && yarn lint:frontend && yarn lint:test",
|
2023-11-13 14:17:12 +03:00
|
|
|
"prepack": "node monobundle.js"
|
2022-07-20 17:10:38 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-10-25 18:25:06 +03:00
|
|
|
"node": "^18.12.1",
|
2023-10-04 06:39:32 +03:00
|
|
|
"cli": "^1.25.0"
|
2022-07-20 17:10:38 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-07-11 09:45:25 +03:00
|
|
|
"@extractus/oembed-extractor": "3.2.1",
|
2023-12-10 23:04:32 +03:00
|
|
|
"@sentry/node": "7.86.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/adapter-base-cache": "0.1.10",
|
2023-02-13 11:27:47 +03:00
|
|
|
"@tryghost/adapter-cache-redis": "0.0.0",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/adapter-manager": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/admin-api-schema": "4.5.3",
|
2023-04-20 18:23:06 +03:00
|
|
|
"@tryghost/announcement-bar-settings": "0.0.0",
|
2022-08-11 17:39:37 +03:00
|
|
|
"@tryghost/api-framework": "0.0.0",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/api-version-compatibility-service": "0.0.0",
|
2022-10-11 17:53:54 +03:00
|
|
|
"@tryghost/audience-feedback": "0.0.0",
|
2023-11-16 12:35:20 +03:00
|
|
|
"@tryghost/bookshelf-plugins": "0.6.12",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/bootstrap-socket": "0.0.0",
|
2023-05-16 10:30:31 +03:00
|
|
|
"@tryghost/collections": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/color-utils": "0.2.0",
|
|
|
|
"@tryghost/config-url-helpers": "1.0.10",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/constants": "0.0.0",
|
2022-07-20 18:20:24 +03:00
|
|
|
"@tryghost/custom-theme-settings-service": "0.0.0",
|
2022-10-27 13:51:09 +03:00
|
|
|
"@tryghost/data-generator": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/database-info": "0.3.20",
|
|
|
|
"@tryghost/debug": "0.1.26",
|
2022-07-21 10:15:29 +03:00
|
|
|
"@tryghost/domain-events": "0.0.0",
|
2023-07-31 19:00:52 +03:00
|
|
|
"@tryghost/donations": "0.0.0",
|
2023-01-20 15:08:30 +03:00
|
|
|
"@tryghost/dynamic-routing-events": "0.0.0",
|
2022-07-20 18:20:24 +03:00
|
|
|
"@tryghost/email-analytics-provider-mailgun": "0.0.0",
|
|
|
|
"@tryghost/email-analytics-service": "0.0.0",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/email-content-generator": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/email-mock-receiver": "0.3.2",
|
2022-11-25 18:00:47 +03:00
|
|
|
"@tryghost/email-service": "0.0.0",
|
2022-11-18 10:02:32 +03:00
|
|
|
"@tryghost/email-suppression-list": "0.0.0",
|
2023-10-12 10:50:42 +03:00
|
|
|
"@tryghost/errors": "1.2.26",
|
2022-07-21 10:24:02 +03:00
|
|
|
"@tryghost/express-dynamic-redirects": "0.0.0",
|
2023-03-03 14:08:18 +03:00
|
|
|
"@tryghost/external-media-inliner": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/helpers": "1.1.88",
|
2022-08-03 15:47:37 +03:00
|
|
|
"@tryghost/html-to-plaintext": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/http-cache-utils": "0.1.11",
|
2023-03-16 16:15:01 +03:00
|
|
|
"@tryghost/i18n": "0.0.0",
|
2023-11-16 02:30:48 +03:00
|
|
|
"@tryghost/image-transform": "1.2.11",
|
2023-03-02 10:05:22 +03:00
|
|
|
"@tryghost/importer-handler-content-files": "0.0.0",
|
2022-12-16 00:00:43 +03:00
|
|
|
"@tryghost/importer-revue": "0.0.0",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/job-manager": "0.0.0",
|
2024-01-18 10:19:38 +03:00
|
|
|
"@tryghost/kg-card-factory": "5.0.1",
|
2023-11-02 00:22:56 +03:00
|
|
|
"@tryghost/kg-converters": "0.0.22",
|
2024-01-18 10:19:38 +03:00
|
|
|
"@tryghost/kg-default-atoms": "5.0.1",
|
|
|
|
"@tryghost/kg-default-cards": "10.0.2",
|
2024-01-18 23:38:09 +03:00
|
|
|
"@tryghost/kg-default-nodes": "1.0.6",
|
|
|
|
"@tryghost/kg-html-to-lexical": "1.0.7",
|
|
|
|
"@tryghost/kg-lexical-html-renderer": "1.0.6",
|
2024-01-18 10:19:38 +03:00
|
|
|
"@tryghost/kg-mobiledoc-html-renderer": "7.0.1",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/limit-service": "1.2.12",
|
2022-09-14 01:26:35 +03:00
|
|
|
"@tryghost/link-redirects": "0.0.0",
|
2022-09-19 18:12:54 +03:00
|
|
|
"@tryghost/link-replacer": "0.0.0",
|
2022-09-14 01:27:27 +03:00
|
|
|
"@tryghost/link-tracking": "0.0.0",
|
2023-10-12 10:50:42 +03:00
|
|
|
"@tryghost/logging": "2.4.8",
|
2022-07-21 10:15:29 +03:00
|
|
|
"@tryghost/magic-link": "0.0.0",
|
2023-06-23 14:22:01 +03:00
|
|
|
"@tryghost/mail-events": "0.0.0",
|
2022-08-12 18:48:40 +03:00
|
|
|
"@tryghost/mailgun-client": "0.0.0",
|
2022-08-18 18:38:42 +03:00
|
|
|
"@tryghost/member-attribution": "0.0.0",
|
2022-07-21 10:15:29 +03:00
|
|
|
"@tryghost/member-events": "0.0.0",
|
|
|
|
"@tryghost/members-api": "0.0.0",
|
2022-08-18 12:36:16 +03:00
|
|
|
"@tryghost/members-csv": "0.0.0",
|
2022-07-21 10:15:29 +03:00
|
|
|
"@tryghost/members-events-service": "0.0.0",
|
|
|
|
"@tryghost/members-importer": "0.0.0",
|
|
|
|
"@tryghost/members-offers": "0.0.0",
|
|
|
|
"@tryghost/members-ssr": "0.0.0",
|
|
|
|
"@tryghost/members-stripe-service": "0.0.0",
|
2023-03-12 19:13:04 +03:00
|
|
|
"@tryghost/mentions-email-report": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/metrics": "1.0.27",
|
2023-02-15 10:23:31 +03:00
|
|
|
"@tryghost/milestones": "0.0.0",
|
2023-02-13 19:35:21 +03:00
|
|
|
"@tryghost/minifier": "0.0.0",
|
2023-06-28 13:22:13 +03:00
|
|
|
"@tryghost/model-to-domain-event-interceptor": "0.0.0",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/mw-api-version-mismatch": "0.0.0",
|
2022-08-11 15:10:39 +03:00
|
|
|
"@tryghost/mw-cache-control": "0.0.0",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/mw-error-handler": "0.0.0",
|
|
|
|
"@tryghost/mw-session-from-token": "0.0.0",
|
2023-02-27 20:34:03 +03:00
|
|
|
"@tryghost/mw-version-match": "0.0.0",
|
2022-07-26 16:12:32 +03:00
|
|
|
"@tryghost/mw-vhost": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/nodemailer": "0.3.37",
|
2024-01-15 17:40:01 +03:00
|
|
|
"@tryghost/nql": "0.12.1",
|
2022-08-15 10:33:23 +03:00
|
|
|
"@tryghost/oembed-service": "0.0.0",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/package-json": "0.0.0",
|
2023-04-17 16:59:13 +03:00
|
|
|
"@tryghost/post-revisions": "0.0.0",
|
2023-03-21 10:24:25 +03:00
|
|
|
"@tryghost/posts-service": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/pretty-cli": "1.2.38",
|
|
|
|
"@tryghost/promise": "0.3.6",
|
2023-08-31 14:38:13 +03:00
|
|
|
"@tryghost/recommendations": "0.0.0",
|
2023-09-25 16:43:11 +03:00
|
|
|
"@tryghost/request": "1.0.0",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/security": "0.0.0",
|
|
|
|
"@tryghost/session-service": "0.0.0",
|
|
|
|
"@tryghost/settings-path-manager": "0.0.0",
|
2023-02-17 19:00:47 +03:00
|
|
|
"@tryghost/slack-notifications": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/social-urls": "0.1.41",
|
2022-08-26 18:00:32 +03:00
|
|
|
"@tryghost/staff-service": "0.0.0",
|
2022-09-20 16:18:51 +03:00
|
|
|
"@tryghost/stats-service": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/string": "0.2.10",
|
2022-10-21 11:27:45 +03:00
|
|
|
"@tryghost/tiers": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/tpl": "0.1.26",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/update-check-service": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/url-utils": "4.4.6",
|
|
|
|
"@tryghost/validator": "0.2.6",
|
2022-07-21 10:15:29 +03:00
|
|
|
"@tryghost/verification-trigger": "0.0.0",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/version": "0.1.24",
|
2023-01-17 10:55:53 +03:00
|
|
|
"@tryghost/webmentions": "0.0.0",
|
2023-10-03 10:37:09 +03:00
|
|
|
"@tryghost/zip": "1.1.38",
|
2022-07-20 17:10:38 +03:00
|
|
|
"amperize": "0.6.1",
|
2022-08-03 09:13:06 +03:00
|
|
|
"analytics-node": "6.2.0",
|
2023-02-22 11:57:53 +03:00
|
|
|
"body-parser": "1.20.2",
|
2022-07-20 17:10:38 +03:00
|
|
|
"bookshelf": "1.2.0",
|
2023-08-15 18:31:46 +03:00
|
|
|
"bookshelf-relations": "2.6.0",
|
2022-07-20 17:10:38 +03:00
|
|
|
"brute-knex": "4.0.1",
|
2022-11-23 13:37:03 +03:00
|
|
|
"bson-objectid": "2.0.4",
|
2022-07-20 17:10:38 +03:00
|
|
|
"chalk": "4.1.2",
|
|
|
|
"cheerio": "0.22.0",
|
2022-08-03 13:56:14 +03:00
|
|
|
"common-tags": "1.8.2",
|
2022-07-20 17:10:38 +03:00
|
|
|
"compression": "1.7.4",
|
|
|
|
"connect-slashes": "1.4.0",
|
2024-01-24 08:02:03 +03:00
|
|
|
"cookie-session": "2.1.0",
|
2022-07-20 17:10:38 +03:00
|
|
|
"cors": "2.8.5",
|
|
|
|
"downsize": "0.0.8",
|
2022-10-10 05:33:02 +03:00
|
|
|
"express": "4.18.2",
|
2022-07-20 17:10:38 +03:00
|
|
|
"express-brute": "1.0.1",
|
2023-11-27 15:12:55 +03:00
|
|
|
"express-hbs": "2.5.0",
|
2023-05-11 12:28:53 +03:00
|
|
|
"express-jwt": "8.4.1",
|
2023-08-30 17:27:58 +03:00
|
|
|
"express-lazy-router": "1.0.6",
|
2022-07-20 17:10:38 +03:00
|
|
|
"express-query-boolean": "2.0.0",
|
|
|
|
"express-session": "1.17.3",
|
2023-11-28 07:21:28 +03:00
|
|
|
"fs-extra": "11.2.0",
|
2022-07-20 17:10:38 +03:00
|
|
|
"ghost-storage-base": "1.0.0",
|
2023-01-16 03:20:18 +03:00
|
|
|
"glob": "8.1.0",
|
2023-02-20 18:33:11 +03:00
|
|
|
"got": "11.8.6",
|
2023-11-16 15:20:56 +03:00
|
|
|
"gscan": "4.42.0",
|
2023-10-23 22:07:41 +03:00
|
|
|
"human-number": "2.0.4",
|
2024-01-02 20:16:50 +03:00
|
|
|
"image-size": "1.1.1",
|
2022-07-20 17:10:38 +03:00
|
|
|
"intl": "1.2.5",
|
|
|
|
"intl-messageformat": "5.4.3",
|
|
|
|
"js-yaml": "4.1.0",
|
2023-05-29 05:07:32 +03:00
|
|
|
"jsdom": "22.1.0",
|
2024-01-17 01:55:26 +03:00
|
|
|
"json-stable-stringify": "1.1.1",
|
2022-07-20 17:10:38 +03:00
|
|
|
"jsonpath": "1.1.1",
|
|
|
|
"jsonwebtoken": "8.5.1",
|
2023-07-04 11:18:16 +03:00
|
|
|
"juice": "9.1.0",
|
2022-07-20 17:10:38 +03:00
|
|
|
"keypair": "1.0.4",
|
2023-01-23 05:01:58 +03:00
|
|
|
"knex": "2.4.2",
|
2024-01-05 14:22:47 +03:00
|
|
|
"knex-migrator": "5.1.7",
|
2023-12-04 23:56:50 +03:00
|
|
|
"lib0": "0.2.88",
|
2022-07-20 17:10:38 +03:00
|
|
|
"lodash": "4.17.21",
|
2023-11-13 05:11:10 +03:00
|
|
|
"luxon": "3.4.4",
|
2022-07-20 17:10:38 +03:00
|
|
|
"moment": "2.24.0",
|
|
|
|
"moment-timezone": "0.5.23",
|
|
|
|
"multer": "1.4.4",
|
2024-01-26 11:28:17 +03:00
|
|
|
"mysql2": "3.9.0",
|
2023-10-23 06:22:58 +03:00
|
|
|
"nconf": "0.12.1",
|
2024-01-26 00:54:30 +03:00
|
|
|
"newrelic": "11.10.1",
|
2023-02-17 05:06:37 +03:00
|
|
|
"node-jose": "2.2.0",
|
2022-07-20 17:10:38 +03:00
|
|
|
"path-match": "1.2.4",
|
|
|
|
"probe-image-size": "7.2.3",
|
|
|
|
"rss": "1.2.2",
|
2023-07-11 13:52:30 +03:00
|
|
|
"sanitize-html": "2.11.0",
|
2023-07-08 01:08:47 +03:00
|
|
|
"semver": "7.5.4",
|
2024-01-14 23:44:14 +03:00
|
|
|
"socket.io": "4.7.4",
|
2022-07-20 17:10:38 +03:00
|
|
|
"stoppable": "1.1.0",
|
2023-09-12 12:22:36 +03:00
|
|
|
"uuid": "9.0.1",
|
2024-01-02 11:29:44 +03:00
|
|
|
"ws": "8.16.0",
|
2023-04-12 22:24:02 +03:00
|
|
|
"xml": "1.0.1",
|
2023-09-19 12:41:20 +03:00
|
|
|
"y-protocols": "1.0.6",
|
2024-01-22 03:11:55 +03:00
|
|
|
"yjs": "13.6.11"
|
2022-07-20 17:10:38 +03:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2024-01-12 20:55:49 +03:00
|
|
|
"@sentry/profiling-node": "1.3.5",
|
2023-12-11 18:51:37 +03:00
|
|
|
"@tryghost/html-to-mobiledoc": "3.0.1",
|
2024-01-05 12:27:53 +03:00
|
|
|
"sqlite3": "5.1.7"
|
2022-07-20 17:10:38 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-11 18:31:45 +03:00
|
|
|
"@actions/core": "1.10.1",
|
2023-09-22 01:23:58 +03:00
|
|
|
"@playwright/test": "1.38.1",
|
2023-08-11 17:12:11 +03:00
|
|
|
"@tryghost/express-test": "0.13.7",
|
2023-10-31 22:43:13 +03:00
|
|
|
"@tryghost/webhook-mock-receiver": "0.2.8",
|
2023-11-07 11:19:44 +03:00
|
|
|
"@types/common-tags": "1.8.4",
|
2023-09-01 16:32:29 +03:00
|
|
|
"c8": "8.0.1",
|
2023-02-28 11:38:50 +03:00
|
|
|
"cli-progress": "3.12.0",
|
2024-01-04 00:07:34 +03:00
|
|
|
"cssnano": "6.0.3",
|
2023-11-13 14:17:12 +03:00
|
|
|
"detect-indent": "6.1.0",
|
|
|
|
"detect-newline": "3.1.0",
|
2023-06-14 15:56:03 +03:00
|
|
|
"expect": "29.3.1",
|
2023-11-13 14:17:12 +03:00
|
|
|
"find-root": "1.1.0",
|
2023-03-02 11:15:12 +03:00
|
|
|
"form-data": "4.0.0",
|
2023-08-02 21:29:05 +03:00
|
|
|
"inquirer": "8.2.6",
|
2023-10-05 19:31:50 +03:00
|
|
|
"jwks-rsa": "3.1.0",
|
2022-12-12 16:20:22 +03:00
|
|
|
"mocha": "10.2.0",
|
2022-07-20 17:10:38 +03:00
|
|
|
"mocha-slow-test-reporter": "0.1.2",
|
2023-03-02 11:48:54 +03:00
|
|
|
"mock-knex": "TryGhost/mock-knex#d8b93b1c20d4820323477f2c60db016ab3e73192",
|
2023-09-01 16:32:29 +03:00
|
|
|
"nock": "13.3.3",
|
2022-07-20 17:10:38 +03:00
|
|
|
"papaparse": "5.3.2",
|
2024-01-04 23:21:45 +03:00
|
|
|
"postcss": "8.4.33",
|
2022-11-30 01:20:54 +03:00
|
|
|
"postcss-cli": "10.1.0",
|
2022-07-20 17:10:38 +03:00
|
|
|
"rewire": "6.0.0",
|
|
|
|
"should": "13.2.3",
|
2023-07-11 16:11:02 +03:00
|
|
|
"sinon": "15.2.0",
|
2022-12-08 20:16:37 +03:00
|
|
|
"supertest": "6.3.3",
|
2022-12-01 15:05:20 +03:00
|
|
|
"tmp": "0.2.1",
|
|
|
|
"toml": "3.0.0"
|
2022-07-20 17:10:38 +03:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2023-01-20 14:51:03 +03:00
|
|
|
"@elastic/elasticsearch": "8.5.0",
|
2023-10-12 10:50:42 +03:00
|
|
|
"@tryghost/errors": "1.2.26",
|
|
|
|
"@tryghost/logging": "2.4.8",
|
2022-07-20 17:10:38 +03:00
|
|
|
"moment": "2.24.0",
|
|
|
|
"moment-timezone": "0.5.23"
|
2023-07-13 12:14:08 +03:00
|
|
|
},
|
|
|
|
"nx": {
|
|
|
|
"targets": {
|
|
|
|
"archive": {
|
|
|
|
"dependsOn": [
|
2023-07-19 15:51:17 +03:00
|
|
|
"build",
|
2023-07-14 15:12:13 +03:00
|
|
|
"^build:ts",
|
|
|
|
{
|
|
|
|
"projects": [
|
|
|
|
"ghost-admin"
|
|
|
|
],
|
|
|
|
"target": "build"
|
|
|
|
}
|
2023-07-13 12:14:08 +03:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"dev": {
|
|
|
|
"dependsOn": [
|
|
|
|
"^build:ts"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2022-07-20 17:10:38 +03:00
|
|
|
}
|
|
|
|
}
|