2014-02-09 10:29:23 -05:00
|
|
|
{
|
2015-05-05 23:54:23 +00:00
|
|
|
"name": "ghost",
|
2022-05-23 13:20:53 +01:00
|
|
|
"version": "5.0.0",
|
2017-07-27 12:26:31 +04:00
|
|
|
"description": "The professional publishing platform",
|
2015-05-05 23:54:23 +00:00
|
|
|
"author": "Ghost Foundation",
|
2018-07-20 23:42:39 +02:00
|
|
|
"homepage": "https://ghost.org",
|
2015-05-05 23:54:23 +00:00
|
|
|
"keywords": [
|
|
|
|
"ghost",
|
|
|
|
"blog",
|
2018-12-03 18:04:05 +07:00
|
|
|
"cms",
|
|
|
|
"headless",
|
|
|
|
"content",
|
|
|
|
"markdown"
|
2015-05-05 23:54:23 +00:00
|
|
|
],
|
|
|
|
"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",
|
2015-05-25 21:00:32 -07:00
|
|
|
"license": "MIT",
|
2015-05-05 23:54:23 +00:00
|
|
|
"scripts": {
|
|
|
|
"start": "node index",
|
2021-07-06 08:22:25 +01:00
|
|
|
"dev": "grunt dev",
|
|
|
|
"dev:debug": "DEBUG=ghost:* grunt dev",
|
2020-08-04 03:15:58 +08:00
|
|
|
"setup": "yarn install && knex-migrator init && grunt symlink && grunt init || (exit 0)",
|
2021-07-05 20:02:22 +01:00
|
|
|
"main": "grunt shell:main && grunt subgrunt:init",
|
|
|
|
"build": "grunt build",
|
2022-03-16 21:10:49 +00:00
|
|
|
"test": "mocha --require=./test/utils/overrides.js --exit --trace-warnings --recursive --extension=test.js --timeout=60000",
|
2021-10-06 13:39:23 +01:00
|
|
|
"test:all": "yarn test:unit && yarn test:integration && yarn test:e2e && yarn lint",
|
2021-07-06 19:36:30 +01:00
|
|
|
"test:debug": "DEBUG=ghost:test* yarn test",
|
2022-03-07 13:38:45 +00:00
|
|
|
"test:unit": "c8 yarn test:unit:base",
|
|
|
|
"test:unit:base": "mocha --require=./test/utils/overrides.js --exit --trace-warnings --recursive --extension=test.js './test/unit' --timeout=2000",
|
2022-03-16 21:10:49 +00:00
|
|
|
"test:integration": "mocha --require=./test/utils/overrides.js --exit --trace-warnings --recursive --extension=test.js './test/integration' --timeout=5000",
|
|
|
|
"test:e2e": "mocha --require=./test/utils/overrides.js --exit --trace-warnings --recursive --extension=test.js './test/e2e-api' './test/e2e-frontend' './test/e2e-server' --timeout=10000",
|
|
|
|
"test:regression": "mocha --require=./test/utils/overrides.js --exit --trace-warnings --recursive --extension=test.js './test/regression' --timeout=60000",
|
2022-02-17 11:31:54 +01:00
|
|
|
"test:browser": "playwright test --browser=all test/e2e-browser",
|
2022-02-16 18:54:12 +01:00
|
|
|
"test:ci": "yarn test:e2e -b && yarn test:integration -b && yarn test:regression -b",
|
2021-10-06 13:39:23 +01: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",
|
2022-03-16 21:10:49 +00:00
|
|
|
"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",
|
2019-02-11 13:26:06 +01:00
|
|
|
"lint:server": "eslint --ignore-path .eslintignore 'core/server/**/*.js' 'core/*.js' '*.js'",
|
2020-06-01 16:06:50 -05:00
|
|
|
"lint:shared": "eslint --ignore-path .eslintignore 'core/shared/**/*.js'",
|
2019-08-08 15:01:00 +02:00
|
|
|
"lint:frontend": "eslint --ignore-path .eslintignore 'core/frontend/**/*.js'",
|
2021-05-07 12:13:06 +01:00
|
|
|
"lint:test": "eslint -c test/.eslintrc.js --ignore-path test/.eslintignore 'test/**/*.js'",
|
2021-04-27 10:34:52 +01:00
|
|
|
"lint:code": "yarn lint:server && yarn lint:shared && yarn lint:frontend",
|
2020-06-01 16:06:50 -05:00
|
|
|
"lint": "yarn lint:server && yarn lint:shared && yarn lint:frontend && yarn lint:test",
|
2022-05-17 09:05:44 +01:00
|
|
|
"fix:admin": "yarn cache clean && cd core/admin && rm -rf node_modules tmp dist && yarn && cd ../../",
|
2021-06-23 16:08:12 +01:00
|
|
|
"fix:server": "yarn cache clean && rm -rf node_modules && yarn",
|
2022-05-17 09:05:44 +01:00
|
|
|
"fix": "yarn fix:admin && yarn fix:server"
|
2015-05-05 23:54:23 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-04-19 15:53:44 +01:00
|
|
|
"node": "^14.17.0 || ^16.13.0",
|
2021-05-05 14:40:28 +01:00
|
|
|
"cli": "^1.17.0"
|
2015-05-05 23:54:23 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-26 16:27:46 +00:00
|
|
|
"@sentry/node": "6.19.7",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/adapter-manager": "0.2.31",
|
2022-05-16 19:47:18 +01:00
|
|
|
"@tryghost/admin-api-schema": "4.0.0",
|
2022-05-24 16:39:15 +01:00
|
|
|
"@tryghost/api-version-compatibility-service": "0.4.3",
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/bookshelf-plugins": "0.4.1",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/bootstrap-socket": "0.2.20",
|
2022-05-16 07:45:28 +00:00
|
|
|
"@tryghost/color-utils": "0.1.17",
|
2022-05-11 14:53:23 +01:00
|
|
|
"@tryghost/config-url-helpers": "1.0.0",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/constants": "1.0.5",
|
|
|
|
"@tryghost/custom-theme-settings-service": "0.3.3",
|
|
|
|
"@tryghost/database-info": "0.3.5",
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/debug": "0.1.16",
|
2022-05-16 19:47:18 +01:00
|
|
|
"@tryghost/domain-events": "0.1.14",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/email-analytics-provider-mailgun": "1.0.9",
|
|
|
|
"@tryghost/email-analytics-service": "1.0.7",
|
2022-05-24 16:39:15 +01:00
|
|
|
"@tryghost/email-content-generator": "0.1.3",
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/errors": "1.2.12",
|
2022-05-17 09:17:11 +01:00
|
|
|
"@tryghost/express-dynamic-redirects": "0.2.13",
|
|
|
|
"@tryghost/helpers": "1.1.69",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/image-transform": "1.0.32",
|
|
|
|
"@tryghost/job-manager": "0.8.24",
|
2022-04-01 09:24:53 +01:00
|
|
|
"@tryghost/kg-card-factory": "3.1.3",
|
2022-04-01 10:42:51 +01:00
|
|
|
"@tryghost/kg-default-atoms": "3.1.2",
|
2022-04-01 09:23:40 +01:00
|
|
|
"@tryghost/kg-default-cards": "5.16.2",
|
2022-04-01 09:25:35 +01:00
|
|
|
"@tryghost/kg-markdown-html-renderer": "5.1.5",
|
2022-04-01 10:43:02 +01:00
|
|
|
"@tryghost/kg-mobiledoc-html-renderer": "5.3.5",
|
2022-05-12 14:28:45 +02:00
|
|
|
"@tryghost/limit-service": "1.2.0",
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/logging": "2.1.8",
|
2022-05-17 09:17:11 +01:00
|
|
|
"@tryghost/magic-link": "1.0.26",
|
|
|
|
"@tryghost/member-events": "0.4.6",
|
2022-05-24 11:45:20 +08:00
|
|
|
"@tryghost/members-api": "8.1.1",
|
2022-05-16 19:47:18 +01:00
|
|
|
"@tryghost/members-events-service": "0.4.3",
|
2022-05-19 18:26:29 +02:00
|
|
|
"@tryghost/members-importer": "0.5.15",
|
2022-05-17 09:17:11 +01:00
|
|
|
"@tryghost/members-offers": "0.11.6",
|
|
|
|
"@tryghost/members-ssr": "1.0.28",
|
2022-05-16 19:47:18 +01:00
|
|
|
"@tryghost/members-stripe-service": "0.10.5",
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/metrics": "1.0.11",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/minifier": "0.1.15",
|
2022-05-11 10:53:31 +08:00
|
|
|
"@tryghost/mw-api-version-mismatch": "0.2.1",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/mw-error-handler": "1.0.1",
|
|
|
|
"@tryghost/mw-session-from-token": "0.1.32",
|
2022-04-26 16:40:45 +01:00
|
|
|
"@tryghost/nodemailer": "0.3.22",
|
2022-04-22 11:41:28 +01:00
|
|
|
"@tryghost/nql": "0.9.2",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/package-json": "1.0.21",
|
2022-05-17 15:40:12 +01:00
|
|
|
"@tryghost/pretty-cli": "1.2.27",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/promise": "0.1.18",
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/request": "0.1.26",
|
|
|
|
"@tryghost/root-utils": "0.3.14",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/security": "0.3.1",
|
|
|
|
"@tryghost/session-service": "0.1.42",
|
|
|
|
"@tryghost/settings-path-manager": "0.1.7",
|
2022-05-17 09:17:11 +01:00
|
|
|
"@tryghost/social-urls": "0.1.32",
|
2022-05-19 17:07:00 +01:00
|
|
|
"@tryghost/stats-service": "0.2.2",
|
2022-05-17 09:17:11 +01:00
|
|
|
"@tryghost/string": "0.1.26",
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/tpl": "0.1.16",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/update-check-service": "0.3.4",
|
2022-05-17 09:17:11 +01:00
|
|
|
"@tryghost/url-utils": "4.0.1",
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/validator": "0.1.24",
|
2022-05-16 19:47:18 +01:00
|
|
|
"@tryghost/verification-trigger": "0.2.5",
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/version": "0.1.14",
|
2022-05-06 12:54:27 +01:00
|
|
|
"@tryghost/vhost-middleware": "1.0.25",
|
2022-05-12 16:50:18 +01:00
|
|
|
"@tryghost/zip": "1.1.25",
|
2020-03-02 00:20:46 +00:00
|
|
|
"amperize": "0.6.1",
|
2021-11-22 06:48:04 +00:00
|
|
|
"analytics-node": "6.0.0",
|
2019-12-02 00:24:08 +00:00
|
|
|
"bluebird": "3.7.2",
|
2022-04-04 13:19:42 +00:00
|
|
|
"body-parser": "1.20.0",
|
2020-08-03 20:36:53 +01:00
|
|
|
"bookshelf": "1.2.0",
|
2022-03-07 20:53:10 +00:00
|
|
|
"bookshelf-relations": "2.4.0",
|
2020-11-02 17:07:12 +00:00
|
|
|
"brute-knex": "4.0.1",
|
2022-03-14 01:38:03 +00:00
|
|
|
"bson-objectid": "2.0.3",
|
2020-11-23 17:17:49 +13:00
|
|
|
"bthreads": "0.5.1",
|
2022-05-17 15:40:12 +01:00
|
|
|
"chalk": "4.1.2",
|
2016-09-19 13:32:40 +02:00
|
|
|
"cheerio": "0.22.0",
|
2019-07-02 00:36:16 +00:00
|
|
|
"compression": "1.7.4",
|
2019-07-02 10:03:51 +00:00
|
|
|
"connect-slashes": "1.4.0",
|
2022-03-24 12:37:31 +00:00
|
|
|
"cookie-session": "2.0.0",
|
2019-01-21 13:33:20 +01:00
|
|
|
"cors": "2.8.5",
|
2015-05-05 23:54:23 +00:00
|
|
|
"downsize": "0.0.8",
|
2022-04-29 21:07:20 +00:00
|
|
|
"express": "4.18.1",
|
2016-11-08 11:33:19 +00:00
|
|
|
"express-brute": "1.0.1",
|
2021-04-22 16:36:14 +00:00
|
|
|
"express-hbs": "2.4.0",
|
2022-05-19 16:27:29 +00:00
|
|
|
"express-jwt": "7.7.2",
|
2021-10-11 12:06:03 +02:00
|
|
|
"express-lazy-router": "1.0.4",
|
2018-08-31 18:02:39 +08:00
|
|
|
"express-query-boolean": "2.0.0",
|
2022-05-12 14:54:28 +00:00
|
|
|
"express-session": "1.17.3",
|
2022-04-18 15:32:12 +00:00
|
|
|
"fs-extra": "10.1.0",
|
2021-11-09 15:18:28 +04:00
|
|
|
"ghost-storage-base": "1.0.0",
|
2022-05-13 23:55:59 +00:00
|
|
|
"glob": "8.0.3",
|
2019-07-04 10:36:51 +02:00
|
|
|
"got": "9.6.0",
|
2022-05-24 17:39:47 +01:00
|
|
|
"gscan": "4.30.0",
|
2022-05-13 11:16:01 +01:00
|
|
|
"html-to-text": "8.2.0",
|
2022-01-11 08:32:11 +00:00
|
|
|
"image-size": "1.0.1",
|
2016-09-26 11:13:38 +02:00
|
|
|
"intl": "1.2.5",
|
2019-07-29 06:34:47 +00:00
|
|
|
"intl-messageformat": "5.4.3",
|
2021-04-14 21:51:55 +00:00
|
|
|
"js-yaml": "4.1.0",
|
2021-04-01 20:00:01 +00:00
|
|
|
"jsonpath": "1.1.1",
|
2019-07-02 00:41:06 +00:00
|
|
|
"jsonwebtoken": "8.5.1",
|
2021-05-26 08:23:00 +00:00
|
|
|
"juice": "8.0.0",
|
2021-10-11 21:11:01 +00:00
|
|
|
"keypair": "1.0.4",
|
2022-04-22 10:03:32 +01:00
|
|
|
"knex": "2.0.0",
|
2022-05-17 07:28:38 +00:00
|
|
|
"knex-migrator": "4.2.10",
|
2021-02-22 21:53:57 +00:00
|
|
|
"lodash": "4.17.21",
|
2022-05-09 03:40:41 +00:00
|
|
|
"luxon": "2.4.0",
|
2019-11-07 15:26:17 +07:00
|
|
|
"mailgun-js": "0.22.0",
|
2022-04-11 20:47:04 +00:00
|
|
|
"metascraper": "5.29.3",
|
|
|
|
"metascraper-author": "5.29.3",
|
|
|
|
"metascraper-description": "5.29.3",
|
|
|
|
"metascraper-image": "5.29.3",
|
|
|
|
"metascraper-logo": "5.29.3",
|
|
|
|
"metascraper-logo-favicon": "5.29.3",
|
|
|
|
"metascraper-publisher": "5.29.3",
|
|
|
|
"metascraper-title": "5.29.3",
|
|
|
|
"metascraper-url": "5.29.3",
|
2020-06-11 14:20:08 +01:00
|
|
|
"moment": "2.24.0",
|
2019-07-04 13:56:13 +02:00
|
|
|
"moment-timezone": "0.5.23",
|
2021-12-07 17:04:32 +00:00
|
|
|
"multer": "1.4.4",
|
2022-03-02 16:13:03 +01:00
|
|
|
"mysql2": "2.3.3",
|
2022-04-15 04:37:47 +00:00
|
|
|
"nconf": "0.12.0",
|
2022-03-30 21:57:56 +00:00
|
|
|
"node-jose": "2.1.1",
|
2021-11-25 11:40:23 +01:00
|
|
|
"oembed-parser": "1.4.9",
|
2016-04-21 10:44:58 +01:00
|
|
|
"path-match": "1.2.4",
|
2022-03-09 20:44:38 +00:00
|
|
|
"probe-image-size": "7.2.3",
|
2017-01-11 20:42:13 +01:00
|
|
|
"rss": "1.2.2",
|
2022-02-04 17:45:26 +00:00
|
|
|
"sanitize-html": "2.7.0",
|
2022-04-13 09:46:32 +00:00
|
|
|
"semver": "7.3.7",
|
2020-08-10 11:42:31 +01:00
|
|
|
"stoppable": "1.1.0",
|
2020-06-17 10:03:36 +01:00
|
|
|
"tough-cookie": "4.0.0",
|
2020-12-08 21:23:14 +00:00
|
|
|
"uuid": "8.3.2",
|
2016-02-08 21:30:57 +00:00
|
|
|
"xml": "1.0.1"
|
2015-05-05 23:54:23 +00:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2022-04-01 14:57:04 +01:00
|
|
|
"@tryghost/html-to-mobiledoc": "1.8.6",
|
2022-05-06 12:52:08 +00:00
|
|
|
"sqlite3": "5.0.8"
|
2015-05-05 23:54:23 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-11-03 18:01:52 +00:00
|
|
|
"@lodder/grunt-postcss": "3.1.1",
|
2022-05-23 02:17:49 +00:00
|
|
|
"@playwright/test": "1.22.2",
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/express-test": "0.10.0",
|
2022-05-17 00:26:57 +00:00
|
|
|
"c8": "7.11.3",
|
2022-05-17 14:41:10 +00:00
|
|
|
"cli-progress": "3.11.1",
|
2022-04-25 03:13:23 +00:00
|
|
|
"coffeescript": "2.7.0",
|
2022-05-23 02:18:44 +00:00
|
|
|
"cssnano": "5.1.9",
|
2022-05-20 23:47:22 +00:00
|
|
|
"eslint": "8.16.0",
|
2022-05-13 08:53:30 +00:00
|
|
|
"eslint-plugin-ghost": "2.14.0",
|
2022-05-10 13:45:55 +00:00
|
|
|
"grunt": "1.5.3",
|
2016-04-06 15:07:55 -05:00
|
|
|
"grunt-bg-shell": "2.3.3",
|
2022-04-20 23:12:19 +00:00
|
|
|
"grunt-contrib-clean": "2.0.1",
|
2021-05-05 15:46:02 +01:00
|
|
|
"grunt-contrib-compress": "2.0.0",
|
2016-04-06 15:07:55 -05:00
|
|
|
"grunt-contrib-copy": "1.0.0",
|
2019-07-02 09:05:35 +00:00
|
|
|
"grunt-contrib-symlink": "1.0.0",
|
2018-06-04 15:47:33 +02:00
|
|
|
"grunt-contrib-watch": "1.1.0",
|
2018-03-21 18:49:42 +01:00
|
|
|
"grunt-express-server": "0.5.4",
|
2022-03-24 12:06:09 +00:00
|
|
|
"grunt-shell": "4.0.0",
|
2018-01-02 12:08:32 +01:00
|
|
|
"grunt-subgrunt": "1.3.0",
|
2015-05-28 16:16:09 +01:00
|
|
|
"grunt-update-submodules": "0.4.1",
|
2022-05-17 15:40:12 +01:00
|
|
|
"inquirer": "8.2.4",
|
2022-05-20 11:42:30 +00:00
|
|
|
"jwks-rsa": "2.1.3",
|
2022-05-02 01:29:26 +00:00
|
|
|
"mocha": "10.0.0",
|
2021-07-05 09:53:57 +00:00
|
|
|
"mocha-slow-test-reporter": "0.1.2",
|
2022-04-22 12:24:02 +01:00
|
|
|
"mock-knex": "TryGhost/mock-knex#8ecb8c227bf463c991c3d820d33f59efc3ab9682",
|
2022-02-04 19:55:19 +00:00
|
|
|
"nock": "13.2.4",
|
2022-03-21 09:22:10 +00:00
|
|
|
"papaparse": "5.3.2",
|
2022-05-18 18:33:45 +00:00
|
|
|
"postcss": "8.4.14",
|
2022-02-07 12:00:37 +00:00
|
|
|
"rewire": "6.0.0",
|
2018-10-30 09:45:51 +01:00
|
|
|
"should": "13.2.3",
|
2022-05-09 19:14:13 +00:00
|
|
|
"sinon": "14.0.0",
|
2022-04-27 02:05:34 +00:00
|
|
|
"supertest": "6.2.3",
|
2021-04-19 14:48:57 +01:00
|
|
|
"tmp": "0.2.1"
|
2019-07-30 18:36:26 +05:30
|
|
|
},
|
|
|
|
"resolutions": {
|
2022-04-26 16:48:45 +01:00
|
|
|
"@tryghost/logging": "2.1.8",
|
2020-07-28 17:55:23 +01:00
|
|
|
"moment": "2.24.0",
|
2019-07-30 18:36:26 +05:30
|
|
|
"moment-timezone": "0.5.23"
|
2015-05-05 23:54:23 +00:00
|
|
|
}
|
2014-02-09 10:29:23 -05:00
|
|
|
}
|