mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
104f84f252
As discussed with the product team we want to enforce kebab-case file names for all files, with the exception of files which export a single class, in which case they should be PascalCase and reflect the class which they export. This will help find classes faster, and should push better naming for them too. Some files and packages have been excluded from this linting, specifically when a library or framework depends on the naming of a file for the functionality e.g. Ember, knex-migrator, adapter-manager
98 lines
2.6 KiB
JSON
98 lines
2.6 KiB
JSON
{
|
|
"name": "@tryghost/sodo-search",
|
|
"version": "1.1.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/"
|
|
},
|
|
"dependencies": {
|
|
"@testing-library/jest-dom": "5.16.5",
|
|
"@testing-library/react": "12.1.5",
|
|
"@testing-library/user-event": "14.4.3",
|
|
"@tryghost/content-api": "1.11.7",
|
|
"flexsearch": "0.7.21",
|
|
"react": "17.0.2",
|
|
"react-dom": "17.0.2",
|
|
"react-scripts": "5.0.1"
|
|
},
|
|
"scripts": {
|
|
"start": "BROWSER=none react-scripts start",
|
|
"start:combined": "BROWSER=none node ./scripts/start-combined.js",
|
|
"start:dev": "node ./scripts/start-mode.js",
|
|
"tailwind": "npx tailwindcss -i ./src/index.css -o ./public/main.css --watch --minify",
|
|
"dev": "node ./scripts/dev-mode.js",
|
|
"build": "npm run build:combined",
|
|
"build:original": "react-scripts build",
|
|
"build:combined": "node ./scripts/build-combined.js",
|
|
"build:bundle": "webpack --config webpack.config.js",
|
|
"test:ui": "react-scripts test",
|
|
"test:unit": "yarn test",
|
|
"test": "yarn test:ui --watchAll=false --coverage",
|
|
"eject": "react-scripts eject",
|
|
"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 && yarn publish . --tag $npm_package_version",
|
|
"prepublishOnly": "yarn build"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest",
|
|
"plugin:ghost/browser"
|
|
],
|
|
"plugins": [
|
|
"ghost"
|
|
]
|
|
},
|
|
"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": {
|
|
"autoprefixer": "10.4.14",
|
|
"chalk": "4.1.2",
|
|
"chokidar": "3.5.3",
|
|
"copy-webpack-plugin": "11.0.0",
|
|
"eslint-plugin-ghost": "3.0.0",
|
|
"minimist": "1.2.8",
|
|
"nock": "13.3.0",
|
|
"ora": "5.4.1",
|
|
"postcss": "8.4.23",
|
|
"rewire": "6.0.0",
|
|
"serve-handler": "6.1.5",
|
|
"tailwindcss": "3.3.2",
|
|
"webpack-cli": "3.3.12"
|
|
},
|
|
"resolutions": {
|
|
"//": "See https://github.com/facebook/create-react-app/issues/11773",
|
|
"react-error-overlay": "6.0.11"
|
|
}
|
|
}
|