2022-07-04 16:27:40 +03:00
{
2022-07-06 11:16:36 +03:00
"name" : "@tryghost/sodo-search" ,
2022-07-06 11:18:14 +03:00
"version" : "0.1.1" ,
2022-07-04 16:36:49 +03:00
"license" : "MIT" ,
2022-07-06 11:16:36 +03:00
"repository" : {
"type" : "git" ,
"url" : "git@github.com:TryGhost/sodo-search.git"
} ,
2022-07-04 16:36:49 +03:00
"author" : "Ghost Foundation" ,
2022-07-06 11:16:36 +03:00
"unpkg" : "umd/sodo-search.min.js" ,
"files" : [
"umd/" ,
"LICENSE" ,
"README.md"
] ,
"publishConfig" : {
"access" : "public" ,
"registry" : "https://registry.npmjs.org/"
} ,
2022-07-04 16:27:40 +03:00
"dependencies" : {
2022-07-04 16:41:14 +03:00
"@testing-library/jest-dom" : "5.16.2" ,
"@testing-library/react" : "12.1.2" ,
"@testing-library/user-event" : "14.0.0" ,
2022-07-06 18:09:01 +03:00
"@tryghost/content-api" : "^1.11.0" ,
2022-07-05 11:09:10 +03:00
"elasticlunr" : "0.9.5" ,
2022-07-04 16:41:14 +03:00
"react" : "17.0.2" ,
"react-dom" : "17.0.2" ,
"react-scripts" : "4.0.3"
2022-07-04 16:27:40 +03:00
} ,
"scripts" : {
2022-07-04 16:41:14 +03:00
"start" : "BROWSER=none react-scripts start" ,
"start:combined" : "BROWSER=none node ./scripts/start-combined.js" ,
"start:dev" : "node ./scripts/start-mode.js" ,
2022-07-05 12:47:55 +03:00
"dev" : "node ./scripts/start-mode.js" ,
2022-07-06 16:03:35 +03:00
"tailwind" : "npx tailwindcss -i ./src/index.css -o ./public/main.css --watch --minify" ,
2022-07-05 12:47:55 +03:00
"old:dev" : "node ./scripts/dev-mode.js" ,
2022-07-04 16:41:14 +03:00
"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" ,
2022-07-04 16:55:24 +03:00
"test" : "yarn test:ui --watchAll=false --coverage" ,
2022-07-04 16:41:14 +03:00
"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 publish && git push ${GHOST_UPSTREAM:-upstream} main --follow-tags; fi" ,
"posttest" : "yarn lint" ,
"analyze" : "source-map-explorer 'umd/*.js'" ,
"prepublishOnly" : "yarn build"
2022-07-04 16:27:40 +03:00
} ,
"eslintConfig" : {
"extends" : [
"react-app" ,
2022-07-04 16:41:14 +03:00
"react-app/jest" ,
"plugin:ghost/browser"
] ,
"plugins" : [
"ghost"
2022-07-04 16:27:40 +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"
]
2022-07-04 16:41:14 +03:00
} ,
2022-07-06 11:16:36 +03:00
"jest" : {
"coverageReporters" : [
"cobertura" ,
"text-summary" ,
"html"
]
} ,
2022-07-04 16:41:14 +03:00
"devDependencies" : {
2022-07-05 12:47:55 +03:00
"autoprefixer" : "^10.4.7" ,
2022-07-04 16:41:14 +03:00
"chalk" : "4.1.2" ,
"chokidar" : "3.5.2" ,
"copy-webpack-plugin" : "6.4.1" ,
"eslint-plugin-ghost" : "2.12.0" ,
"minimist" : "1.2.5" ,
2022-07-05 11:09:10 +03:00
"nock" : "13.2.8" ,
2022-07-04 16:41:14 +03:00
"ora" : "5.4.1" ,
2022-07-05 12:47:55 +03:00
"postcss" : "^8.4.14" ,
2022-07-04 16:41:14 +03:00
"rewire" : "6.0.0" ,
"serve-handler" : "6.1.3" ,
"source-map-explorer" : "2.5.2" ,
2022-07-05 12:47:55 +03:00
"tailwindcss" : "^3.1.4" ,
2022-07-04 16:41:14 +03:00
"webpack-cli" : "3.3.12"
} ,
"resolutions" : {
"//" : "See https://github.com/facebook/create-react-app/issues/11773" ,
"react-error-overlay" : "6.0.9"
2022-07-04 16:27:40 +03:00
}
}