2020-03-24 08:07:04 -05:00
|
|
|
{
|
2020-09-23 13:04:54 -05:00
|
|
|
"name": "@tryghost/portal",
|
2023-07-18 05:37:39 -05:00
|
|
|
"version": "2.33.7",
|
2020-03-24 08:07:38 -05:00
|
|
|
"license": "MIT",
|
2020-09-24 02:06:24 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-10-05 03:22:17 -05:00
|
|
|
"url": "git://github.com/TryGhost/Ghost.git"
|
2020-09-24 02:06:24 -05:00
|
|
|
},
|
2020-03-24 08:07:38 -05:00
|
|
|
"author": "Ghost Foundation",
|
2020-04-20 11:40:58 -05:00
|
|
|
"files": [
|
|
|
|
"umd/",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md"
|
|
|
|
],
|
2020-04-28 13:08:24 -05:00
|
|
|
"publishConfig": {
|
2020-04-30 07:07:29 -05:00
|
|
|
"access": "public",
|
|
|
|
"registry": "https://registry.npmjs.org/"
|
2020-04-28 13:08:24 -05:00
|
|
|
},
|
2020-03-24 08:07:04 -05:00
|
|
|
"scripts": {
|
2023-06-02 04:32:13 -05:00
|
|
|
"dev": "concurrently \"yarn preview -l silent\" \"yarn build:watch\"",
|
2023-03-14 09:45:27 -05:00
|
|
|
"build": "vite build",
|
|
|
|
"build:watch": "vite build --watch",
|
|
|
|
"preview": "vite preview",
|
|
|
|
"test": "vitest run",
|
|
|
|
"test:ci": "yarn test --coverage",
|
2022-10-05 03:17:01 -05:00
|
|
|
"test:unit": "yarn test:ci",
|
2020-04-01 06:43:42 -05:00
|
|
|
"lint": "eslint src --ext .js --cache",
|
2020-05-01 02:32:27 -05:00
|
|
|
"preship": "yarn lint",
|
2022-10-05 03:43:09 -05:00
|
|
|
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version; fi",
|
2023-04-06 13:18:53 -05:00
|
|
|
"postship": "git push ${GHOST_UPSTREAM:-origin} --follow-tags && npm publish",
|
2020-04-20 11:40:58 -05:00
|
|
|
"prepublishOnly": "yarn build"
|
2020-03-24 08:07:04 -05:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
2020-05-01 02:35:23 -05:00
|
|
|
"extends": [
|
|
|
|
"react-app",
|
2023-05-25 07:59:22 -05:00
|
|
|
"plugin:ghost/browser",
|
|
|
|
"plugin:i18next/recommended"
|
2020-05-01 02:35:23 -05:00
|
|
|
],
|
|
|
|
"plugins": [
|
2023-05-25 07:59:22 -05:00
|
|
|
"ghost",
|
|
|
|
"i18next"
|
2023-03-14 09:45:27 -05:00
|
|
|
]
|
2020-03-24 08:07:04 -05:00
|
|
|
},
|
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
2020-03-24 08:19:04 -05:00
|
|
|
},
|
2021-09-30 06:17:09 -05:00
|
|
|
"jest": {
|
2021-10-05 00:31:20 -05:00
|
|
|
"coverageReporters": [
|
2021-10-20 05:06:44 -05:00
|
|
|
"cobertura",
|
2021-10-05 00:31:20 -05:00
|
|
|
"text-summary",
|
|
|
|
"html"
|
2023-03-14 09:45:27 -05:00
|
|
|
]
|
2021-09-30 06:17:09 -05:00
|
|
|
},
|
2020-03-24 08:19:04 -05:00
|
|
|
"devDependencies": {
|
2023-07-12 14:17:58 -05:00
|
|
|
"@babel/eslint-parser": "7.22.9",
|
2023-05-25 07:59:22 -05:00
|
|
|
"@doist/react-interpolate": "0.4.1",
|
2023-07-21 05:37:15 -05:00
|
|
|
"@sentry/react": "7.60.0",
|
|
|
|
"@sentry/tracing": "7.60.0",
|
2023-03-14 09:45:27 -05:00
|
|
|
"@testing-library/jest-dom": "5.16.5",
|
|
|
|
"@testing-library/react": "12.1.5",
|
|
|
|
"@tryghost/i18n": "0.0.0",
|
2023-07-10 06:50:05 -05:00
|
|
|
"@vitejs/plugin-react": "4.0.3",
|
2023-07-11 08:11:02 -05:00
|
|
|
"@vitest/coverage-v8": "0.33.0",
|
|
|
|
"@vitest/ui": "0.33.0",
|
2023-06-09 05:10:17 -05:00
|
|
|
"concurrently": "8.2.0",
|
2023-07-03 14:19:04 -05:00
|
|
|
"cross-fetch": "4.0.0",
|
2023-03-14 09:45:27 -05:00
|
|
|
"eslint-config-react-app": "7.0.1",
|
2023-05-25 07:59:22 -05:00
|
|
|
"eslint-plugin-i18next": "^6.0.1",
|
2023-05-28 21:07:32 -05:00
|
|
|
"jsdom": "22.1.0",
|
2023-03-14 09:45:27 -05:00
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2",
|
2023-07-21 05:12:35 -05:00
|
|
|
"vite": "4.4.6",
|
2023-07-17 14:03:45 -05:00
|
|
|
"vite-plugin-css-injected-by-js": "3.2.1",
|
2023-05-11 07:40:31 -05:00
|
|
|
"vite-plugin-svgr": "3.2.0",
|
2023-07-06 09:38:11 -05:00
|
|
|
"vitest": "0.33.0"
|
2020-03-24 08:07:04 -05:00
|
|
|
}
|
|
|
|
}
|