Ghost/ghost/portal/package.json

88 lines
2.1 KiB
JSON

{
"name": "@tryghost/portal",
"version": "2.32.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/TryGhost/Ghost.git"
},
"author": "Ghost Foundation",
"files": [
"umd/",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "concurrently \"vite\" \"yarn build:watch\"",
"build": "vite build",
"build:watch": "vite build --watch",
"preview": "vite preview",
"test": "vitest run",
"test:ci": "yarn test --coverage",
"test:unit": "yarn test:ci",
"lint": "eslint src --ext .js --cache",
"preship": "yarn lint",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version; fi",
"postship": "git push ${GHOST_UPSTREAM:-origin} --follow-tags && npm publish",
"prepublishOnly": "yarn build"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:ghost/browser",
"plugin:i18next/recommended"
],
"plugins": [
"ghost",
"i18next"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"coverageReporters": [
"cobertura",
"text-summary",
"html"
]
},
"devDependencies": {
"@babel/eslint-parser": "7.21.8",
"@doist/react-interpolate": "0.4.1",
"@sentry/react": "7.52.1",
"@sentry/tracing": "7.53.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@tryghost/i18n": "0.0.0",
"@vitejs/plugin-react": "4.0.0",
"@vitest/coverage-c8": "0.29.8",
"@vitest/ui": "0.29.8",
"concurrently": "8.0.1",
"cross-fetch": "3.1.6",
"eslint": "8.37.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-i18next": "^6.0.1",
"jsdom": "22.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"vite": "4.3.8",
"vite-plugin-css-injected-by-js": "3.1.1",
"vite-plugin-svgr": "3.2.0",
"vitest": "0.31.1"
}
}