Ghost/apps/portal/package.json
Daniel Lockyer 5c4ef092b6 Updated vitest to v0.32
refs https://github.com/TryGhost/Ghost/pull/16949
refs https://github.com/vitest-dev/vitest/releases/tag/v0.32.0

- contains a switch from `@vitest/coverage-c8` to `@vitest/coverage-v8`
  as this is now required in 0.32
2023-06-20 14:54:04 +02:00

88 lines
2.2 KiB
JSON

{
"name": "@tryghost/portal",
"version": "2.33.2",
"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 \"yarn preview -l silent\" \"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.22.5",
"@doist/react-interpolate": "0.4.1",
"@sentry/react": "7.54.0",
"@sentry/tracing": "7.54.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@tryghost/i18n": "0.0.0",
"@vitejs/plugin-react": "4.0.1",
"@vitest/coverage-v8": "0.32.2",
"@vitest/ui": "0.29.8",
"concurrently": "8.2.0",
"cross-fetch": "3.1.6",
"eslint": "8.37.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-i18next": "^6.0.1",
"jsdom": "22.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"vite": "4.3.9",
"vite-plugin-css-injected-by-js": "3.1.1",
"vite-plugin-svgr": "3.2.0",
"vitest": "0.32.2"
}
}