2022-07-04 15:53:12 +03:00
{
2022-07-08 14:06:25 +03:00
"name" : "@tryghost/comments-ui" ,
2023-03-14 13:46:10 +03:00
"version" : "0.12.4" ,
2022-07-04 15:54:12 +03:00
"license" : "MIT" ,
"repository" : "git@github.com:TryGhost/comments-ui.git" ,
"author" : "Ghost Foundation" ,
2022-07-08 14:06:25 +03:00
"unpkg" : "umd/comments-ui.umd.js" ,
"files" : [
"umd/" ,
"LICENSE" ,
"README.md"
] ,
"publishConfig" : {
"access" : "public" ,
"registry" : "https://registry.npmjs.org/"
} ,
2022-07-04 15:53:12 +03:00
"dependencies" : {
2023-03-21 11:59:12 +03:00
"@headlessui/react" : "1.6.6" ,
"@sentry/react" : "7.11.1" ,
"@tiptap/core" : "2.0.0-beta.182" ,
"@tiptap/extension-blockquote" : "2.0.0-beta.29" ,
"@tiptap/extension-document" : "2.0.0-beta.17" ,
"@tiptap/extension-hard-break" : "2.0.0-beta.33" ,
"@tiptap/extension-link" : "2.0.0-beta.43" ,
"@tiptap/extension-paragraph" : "2.0.0-beta.26" ,
"@tiptap/extension-placeholder" : "2.0.0-beta.53" ,
"@tiptap/extension-text" : "2.0.0-beta.17" ,
"@tiptap/react" : "2.0.0-beta.114" ,
2022-07-04 16:15:01 +03:00
"react" : "17.0.2" ,
"react-dom" : "17.0.2" ,
2022-09-09 12:25:34 +03:00
"react-scripts" : "4.0.3"
2022-07-04 15:53:12 +03:00
} ,
"scripts" : {
2022-09-09 18:27:32 +03:00
"start" : "PORT=4000 BROWSER=none react-scripts start" ,
"start:combined" : "PORT=4000 BROWSER=none node ./scripts/start-combined.js" ,
2023-03-14 13:06:57 +03:00
"start:dev" : "NODE_OPTIONS=--openssl-legacy-provider PORT=4000 node ./scripts/start-mode.js" ,
2022-07-04 16:15:01 +03:00
"dev" : "node ./scripts/dev-mode.js" ,
2023-03-14 13:06:57 +03:00
"build" : "NODE_OPTIONS=--openssl-legacy-provider npm run build:combined" ,
2022-07-04 16:15:01 +03:00
"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-09-09 18:32:57 +03:00
"test" : "yarn test:ui --watchAll=false --coverage" ,
2022-07-04 16:15:01 +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'" ,
2022-07-05 12:53:27 +03:00
"prepublishOnly" : "yarn build" ,
2022-09-09 18:27:32 +03:00
"tailwind" : "npx tailwindcss -i ./src/index.css -o ./public/main.css --watch --minify" ,
"cypress:open" : "cypress open" ,
"cypress" : "cypress run"
2022-07-04 15:53:12 +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:15:01 +03:00
} ,
"devDependencies" : {
2023-06-21 13:15:26 +03:00
"@testing-library/jest-dom" : "5.16.5" ,
2023-06-21 13:17:28 +03:00
"@testing-library/react" : "12.1.5" ,
2023-06-21 13:20:49 +03:00
"@testing-library/user-event" : "14.4.3" ,
"autoprefixer" : "10.4.8" ,
"bson-objectid" : "2.0.3" ,
2022-07-04 16:15:01 +03:00
"chalk" : "4.1.2" ,
2023-06-21 13:36:29 +03:00
"chokidar" : "3.5.3" ,
2022-07-04 16:15:01 +03:00
"copy-webpack-plugin" : "6.4.1" ,
2023-06-21 13:20:49 +03:00
"cypress" : "10.7.0" ,
"eslint-config-react-app" : "7.0.1" ,
"eslint-plugin-cypress" : "2.12.1" ,
2022-07-04 16:15:01 +03:00
"eslint-plugin-ghost" : "2.12.0" ,
2023-06-21 13:20:49 +03:00
"eslint-plugin-tailwindcss" : "3.6.0" ,
2022-07-04 16:15:01 +03:00
"minimist" : "1.2.5" ,
"ora" : "5.4.1" ,
2023-06-21 13:36:54 +03:00
"postcss" : "8.4.24" ,
2022-07-04 16:15:01 +03:00
"rewire" : "6.0.0" ,
2023-06-21 13:37:19 +03:00
"serve-handler" : "6.1.5" ,
2022-07-04 16:15:01 +03:00
"source-map-explorer" : "2.5.2" ,
2023-06-21 13:20:49 +03:00
"tailwindcss" : "3.1.8" ,
2022-07-04 16:15:01 +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 15:53:12 +03:00
}
}