Ghost/apps/portal/package.json
2023-07-24 20:56:39 +02:00

87 lines
2.1 KiB
JSON

{
"name": "@tryghost/portal",
"version": "2.33.7",
"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.9",
"@doist/react-interpolate": "0.4.1",
"@sentry/react": "7.60.0",
"@sentry/tracing": "7.60.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@tryghost/i18n": "0.0.0",
"@vitejs/plugin-react": "4.0.3",
"@vitest/coverage-v8": "0.33.0",
"@vitest/ui": "0.33.0",
"concurrently": "8.2.0",
"cross-fetch": "4.0.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-i18next": "6.0.3",
"jsdom": "22.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"vite": "4.4.7",
"vite-plugin-css-injected-by-js": "3.2.1",
"vite-plugin-svgr": "3.2.0",
"vitest": "0.33.0"
}
}