2020-03-24 16:07:04 +03:00
{
2020-09-23 21:04:54 +03:00
"name" : "@tryghost/portal" ,
2021-12-01 21:47:51 +03:00
"version" : "1.12.9" ,
2020-03-24 16:07:38 +03:00
"license" : "MIT" ,
2020-09-24 10:06:24 +03:00
"repository" : {
"type" : "git" ,
"url" : "git://github.com/TryGhost/Portal.git"
} ,
2020-03-24 16:07:38 +03:00
"author" : "Ghost Foundation" ,
2020-09-23 21:04:54 +03:00
"unpkg" : "umd/portal.min.js" ,
2020-04-20 19:40:58 +03:00
"files" : [
"umd/" ,
"LICENSE" ,
"README.md"
] ,
2020-04-28 21:08:24 +03:00
"publishConfig" : {
2020-04-30 15:07:29 +03:00
"access" : "public" ,
"registry" : "https://registry.npmjs.org/"
2020-04-28 21:08:24 +03:00
} ,
2020-03-24 16:07:04 +03:00
"dependencies" : {
2021-12-07 22:59:28 +03:00
"@sentry/react" : "6.16.0" ,
"@sentry/tracing" : "6.16.0" ,
2021-12-06 15:51:50 +03:00
"@testing-library/jest-dom" : "5.16.1" ,
2021-10-05 11:42:33 +03:00
"@testing-library/react" : "12.1.2" ,
2021-10-19 11:54:36 +03:00
"@testing-library/user-event" : "13.5.0" ,
2021-06-16 18:01:10 +03:00
"react" : "17.0.2" ,
"react-dom" : "17.0.2" ,
2021-10-18 11:55:06 +03:00
"react-scripts" : "4.0.3"
2020-03-24 16:07:04 +03:00
} ,
"scripts" : {
2021-06-16 18:17:23 +03:00
"start" : "BROWSER=none react-scripts start" ,
"start:combined" : "BROWSER=none node ./scripts/start-combined.js" ,
2021-06-10 12:35:08 +03:00
"start:dev" : "node ./scripts/start-mode.js" ,
2021-06-16 18:15:02 +03:00
"dev" : "node ./scripts/dev-mode.js" ,
"build" : "npm run build:combined" ,
"build:original" : "react-scripts build" ,
2020-03-24 16:19:04 +03:00
"build:combined" : "node ./scripts/build-combined.js" ,
"build:bundle" : "webpack --config webpack.config.js" ,
2021-06-16 18:25:42 +03:00
"test" : "react-scripts test" ,
2021-09-30 14:17:09 +03:00
"test:ci" : "yarn test --watchAll=false --coverage" ,
2020-04-01 14:43:42 +03:00
"eject" : "react-scripts eject" ,
"lint" : "eslint src --ext .js --cache" ,
2020-05-01 10:32:27 +03:00
"preship" : "yarn lint" ,
2021-03-02 15:42:18 +03:00
"ship" : "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn publish && git push ${GHOST_UPSTREAM:-upstream} main --follow-tags; fi" ,
2020-04-20 19:40:58 +03:00
"posttest" : "yarn lint" ,
2021-06-16 18:15:02 +03:00
"analyze" : "source-map-explorer 'umd/*.js'" ,
2020-04-20 19:40:58 +03:00
"prepublishOnly" : "yarn build"
2020-03-24 16:07:04 +03:00
} ,
"eslintConfig" : {
2020-05-01 10:35:23 +03:00
"extends" : [
"react-app" ,
"plugin:ghost/browser"
] ,
"plugins" : [
"ghost"
]
2020-03-24 16:07:04 +03: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 16:19:04 +03:00
} ,
2021-09-30 14:17:09 +03:00
"jest" : {
2021-10-05 08:31:20 +03:00
"coverageReporters" : [
2021-10-20 13:06:44 +03:00
"cobertura" ,
2021-10-05 08:31:20 +03:00
"text-summary" ,
"html"
]
2021-09-30 14:17:09 +03:00
} ,
2020-03-24 16:19:04 +03:00
"devDependencies" : {
2021-11-02 08:46:05 +03:00
"chalk" : "4.1.2" ,
2021-06-22 13:22:00 +03:00
"chokidar" : "3.5.2" ,
2021-06-22 13:22:53 +03:00
"copy-webpack-plugin" : "6.4.1" ,
2021-12-01 21:48:18 +03:00
"eslint-plugin-ghost" : "2.11.0" ,
2021-06-22 13:22:53 +03:00
"minimist" : "1.2.5" ,
"ora" : "5.4.1" ,
2020-04-27 23:07:32 +03:00
"rewire" : "5.0.0" ,
2021-06-22 13:22:53 +03:00
"serve-handler" : "6.1.3" ,
"source-map-explorer" : "2.5.2" ,
2020-06-18 15:54:58 +03:00
"webpack-cli" : "3.3.12"
2020-03-24 16:07:04 +03:00
}
}