2022-07-20 17:10:38 +03:00
|
|
|
{
|
|
|
|
"name": "ghost",
|
2023-06-30 18:02:52 +03:00
|
|
|
"version": "5.53.3",
|
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",
|
2022-07-20 17:10:38 +03:00
|
|
|
"start": "node index",
|
2022-10-19 14:58:00 +03:00
|
|
|
"setup": "knex-migrator init",
|
2023-05-03 20:54:58 +03:00
|
|
|
"build": "yarn build:css",
|
|
|
|
"build:css": "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-06-16 10:44:04 +03:00
|
|
|
"test:base": "mocha --require=./test/utils/overrides.js --exit --trace-warnings --recursive --extension=test.js",
|
|
|
|
"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-03-16 17:34:11 +03:00
|
|
|
"test:browser": "yarn test:browser:admin && yarn test:browser:portal",
|
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",
|
|
|
|
"test:browser:single": "NODE_ENV=testing-browser playwright test",
|
2022-12-06 13:30:07 +03:00
|
|
|
"test:browser:setup": "npx playwright install",
|
2023-03-27 13:04:47 +03:00
|
|
|
"test:browser:record": "NODE_ENV=testing-browser yarn start record-test",
|
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",
|
|
|
|
"test:reg:slow": "mocha --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-05-03 20:54:58 +03:00
|
|
|
"prepack": "lerna run build && monobundle"
|
2022-07-20 17:10:38 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-05-01 18:51:10 +03:00
|
|
|
"node": "^16.13.0 || ^18.12.1",
|
2022-07-20 17:10:38 +03:00
|
|
|
"cli": "^1.17.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-06-14 17:37:53 +03:00
|
|
|
"@extractus/oembed-extractor": "3.1.10",
|
2023-06-01 17:39:02 +03:00
|
|
|
"@sentry/node": "7.54.0",
|
2023-04-07 14:14:57 +03:00
|
|
|
"@tryghost/adapter-base-cache": "0.1.5",
|
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-06-15 16:33:55 +03:00
|
|
|
"@tryghost/admin-api-schema": "4.4.0",
|
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-04-07 14:14:57 +03:00
|
|
|
"@tryghost/bookshelf-plugins": "0.6.7",
|
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-04-07 14:14:57 +03:00
|
|
|
"@tryghost/color-utils": "0.1.24",
|
|
|
|
"@tryghost/config-url-helpers": "1.0.6",
|
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-04-07 14:14:57 +03:00
|
|
|
"@tryghost/database-info": "0.3.17",
|
|
|
|
"@tryghost/debug": "0.1.24",
|
2022-07-21 10:15:29 +03:00
|
|
|
"@tryghost/domain-events": "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-04-11 12:17:47 +03:00
|
|
|
"@tryghost/email-mock-receiver": "0.3.1",
|
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-04-05 14:22:00 +03:00
|
|
|
"@tryghost/errors": "1.2.24",
|
2023-02-22 17:25:08 +03:00
|
|
|
"@tryghost/event-aware-cache-wrapper": "0.0.0",
|
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-04-07 14:14:57 +03:00
|
|
|
"@tryghost/helpers": "1.1.77",
|
2022-08-03 15:47:37 +03:00
|
|
|
"@tryghost/html-to-plaintext": "0.0.0",
|
2023-04-07 14:14:57 +03:00
|
|
|
"@tryghost/http-cache-utils": "0.1.9",
|
2023-03-16 16:15:01 +03:00
|
|
|
"@tryghost/i18n": "0.0.0",
|
2023-05-08 11:51:56 +03:00
|
|
|
"@tryghost/image-transform": "1.2.6",
|
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",
|
2023-05-08 19:39:14 +03:00
|
|
|
"@tryghost/kg-card-factory": "4.0.8",
|
2023-02-27 20:40:33 +03:00
|
|
|
"@tryghost/kg-default-atoms": "4.0.1",
|
2023-05-08 19:39:14 +03:00
|
|
|
"@tryghost/kg-default-cards": "9.1.0",
|
2023-07-03 12:44:31 +03:00
|
|
|
"@tryghost/kg-default-nodes": "0.1.5",
|
|
|
|
"@tryghost/kg-lexical-html-renderer": "0.3.0",
|
2023-05-08 19:39:14 +03:00
|
|
|
"@tryghost/kg-mobiledoc-html-renderer": "6.0.8",
|
2023-04-07 14:14:57 +03:00
|
|
|
"@tryghost/limit-service": "1.2.6",
|
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-04-07 14:14:57 +03:00
|
|
|
"@tryghost/logging": "2.4.4",
|
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-04-07 14:14:57 +03:00
|
|
|
"@tryghost/metrics": "1.0.24",
|
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-04-07 14:14:57 +03:00
|
|
|
"@tryghost/nodemailer": "0.3.35",
|
2022-10-27 12:44:19 +03:00
|
|
|
"@tryghost/nql": "0.11.0",
|
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-04-07 14:14:57 +03:00
|
|
|
"@tryghost/pretty-cli": "1.2.36",
|
|
|
|
"@tryghost/promise": "0.3.4",
|
2023-04-05 14:22:00 +03:00
|
|
|
"@tryghost/request": "0.1.39",
|
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-04-07 14:14:57 +03:00
|
|
|
"@tryghost/social-urls": "0.1.36",
|
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-04-07 14:14:57 +03:00
|
|
|
"@tryghost/string": "0.2.4",
|
2022-10-21 11:27:45 +03:00
|
|
|
"@tryghost/tiers": "0.0.0",
|
2023-04-07 14:14:57 +03:00
|
|
|
"@tryghost/tpl": "0.1.24",
|
2022-07-26 15:57:43 +03:00
|
|
|
"@tryghost/update-check-service": "0.0.0",
|
2023-03-15 17:00:23 +03:00
|
|
|
"@tryghost/url-utils": "4.4.0",
|
2023-04-07 14:14:57 +03:00
|
|
|
"@tryghost/validator": "0.2.4",
|
2022-07-21 10:15:29 +03:00
|
|
|
"@tryghost/verification-trigger": "0.0.0",
|
2023-04-07 14:14:57 +03:00
|
|
|
"@tryghost/version": "0.1.22",
|
2023-01-17 10:55:53 +03:00
|
|
|
"@tryghost/webmentions": "0.0.0",
|
2023-04-07 14:14:57 +03:00
|
|
|
"@tryghost/zip": "1.1.34",
|
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",
|
2022-07-20 17:10:38 +03:00
|
|
|
"bluebird": "3.7.2",
|
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-01-03 22:09:30 +03:00
|
|
|
"bookshelf-relations": "2.5.1",
|
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",
|
|
|
|
"cookie-session": "2.0.0",
|
|
|
|
"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",
|
|
|
|
"express-hbs": "2.4.0",
|
2023-05-11 12:28:53 +03:00
|
|
|
"express-jwt": "8.4.1",
|
2023-05-12 14:43:42 +03:00
|
|
|
"express-lazy-router": "1.0.5",
|
2022-07-20 17:10:38 +03:00
|
|
|
"express-query-boolean": "2.0.0",
|
|
|
|
"express-session": "1.17.3",
|
2023-03-20 18:12:31 +03:00
|
|
|
"fs-extra": "11.1.1",
|
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-06-27 17:40:09 +03:00
|
|
|
"gscan": "4.37.1",
|
2022-08-31 22:21:36 +03:00
|
|
|
"human-number": "2.0.1",
|
2022-07-20 17:10:38 +03:00
|
|
|
"image-size": "1.0.2",
|
|
|
|
"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",
|
2022-07-20 17:10:38 +03:00
|
|
|
"jsonpath": "1.1.1",
|
|
|
|
"jsonwebtoken": "8.5.1",
|
2022-08-09 08:03:08 +03:00
|
|
|
"juice": "8.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",
|
2023-05-10 17:13:02 +03:00
|
|
|
"knex-migrator": "5.1.5",
|
2023-06-14 09:30:42 +03:00
|
|
|
"lib0": "0.2.78",
|
2022-07-20 17:10:38 +03:00
|
|
|
"lodash": "4.17.21",
|
2023-06-20 15:48:08 +03:00
|
|
|
"luxon": "3.3.0",
|
2022-07-20 17:10:38 +03:00
|
|
|
"moment": "2.24.0",
|
|
|
|
"moment-timezone": "0.5.23",
|
|
|
|
"multer": "1.4.4",
|
2023-03-08 02:33:30 +03:00
|
|
|
"mysql2": "3.2.0",
|
2022-07-20 17:10:38 +03:00
|
|
|
"nconf": "0.12.0",
|
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-02-20 03:24:48 +03:00
|
|
|
"sanitize-html": "2.10.0",
|
2023-06-23 01:06:20 +03:00
|
|
|
"semver": "7.5.3",
|
2023-06-20 15:24:11 +03:00
|
|
|
"socket.io": "4.6.2",
|
2022-07-20 17:10:38 +03:00
|
|
|
"stoppable": "1.1.0",
|
2022-09-06 02:31:04 +03:00
|
|
|
"uuid": "9.0.0",
|
2023-04-12 22:24:02 +03:00
|
|
|
"ws": "8.13.0",
|
|
|
|
"xml": "1.0.1",
|
|
|
|
"y-protocols": "1.0.5",
|
|
|
|
"yjs": "13.5.50"
|
2022-07-20 17:10:38 +03:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2023-05-08 19:39:14 +03:00
|
|
|
"@tryghost/html-to-mobiledoc": "2.0.16",
|
2023-03-15 01:49:14 +03:00
|
|
|
"sqlite3": "5.1.6"
|
2022-07-20 17:10:38 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-06-02 10:36:28 +03:00
|
|
|
"@actions/core": "1.10.0",
|
2023-06-15 18:58:55 +03:00
|
|
|
"@playwright/test": "1.35.1",
|
2023-04-07 14:14:57 +03:00
|
|
|
"@tryghost/express-test": "0.13.4",
|
|
|
|
"@tryghost/webhook-mock-receiver": "0.2.6",
|
2022-08-03 13:58:37 +03:00
|
|
|
"@types/common-tags": "1.8.1",
|
2023-02-17 01:15:50 +03:00
|
|
|
"c8": "7.13.0",
|
2023-02-28 11:38:50 +03:00
|
|
|
"cli-progress": "3.12.0",
|
2023-05-01 16:40:02 +03:00
|
|
|
"cssnano": "6.0.1",
|
2023-04-05 15:53:35 +03:00
|
|
|
"eslint": "8.37.0",
|
2023-06-14 15:56:03 +03:00
|
|
|
"expect": "29.3.1",
|
2023-03-02 11:15:12 +03:00
|
|
|
"form-data": "4.0.0",
|
2022-10-24 05:41:53 +03:00
|
|
|
"inquirer": "8.2.5",
|
2023-01-13 01:06:45 +03:00
|
|
|
"jwks-rsa": "3.0.1",
|
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-05-03 20:54:58 +03:00
|
|
|
"monobundle": "TryGhost/monobundle#2aca618f8880250fb99ad48d61f0ca7251f1e648",
|
2023-01-11 00:36:44 +03:00
|
|
|
"nock": "13.3.0",
|
2022-07-20 17:10:38 +03:00
|
|
|
"papaparse": "5.3.2",
|
2023-05-29 05:07:03 +03:00
|
|
|
"postcss": "8.4.24",
|
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-04-05 15:53:35 +03:00
|
|
|
"sinon": "15.0.3",
|
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-04-05 14:22:00 +03:00
|
|
|
"@tryghost/errors": "1.2.24",
|
2023-04-07 14:14:57 +03:00
|
|
|
"@tryghost/logging": "2.4.4",
|
2022-07-20 17:10:38 +03:00
|
|
|
"moment": "2.24.0",
|
|
|
|
"moment-timezone": "0.5.23"
|
|
|
|
}
|
|
|
|
}
|