2022-07-04 15:53:12 +03:00
|
|
|
{
|
2022-07-08 14:06:25 +03:00
|
|
|
"name": "@tryghost/comments-ui",
|
2023-11-06 12:50:50 +03:00
|
|
|
"version": "0.13.3",
|
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
|
|
|
"scripts": {
|
2023-06-27 15:51:37 +03:00
|
|
|
"dev": "concurrently \"yarn preview --host -l silent\" \"yarn build:watch\"",
|
2023-06-22 14:55:05 +03:00
|
|
|
"dev:test": "vite build && vite preview --port 7175",
|
2023-06-21 16:22:16 +03:00
|
|
|
"build": "vite build",
|
|
|
|
"build:watch": "vite build --watch",
|
|
|
|
"preview": "vite preview",
|
2023-06-22 14:55:05 +03:00
|
|
|
"test": "vitest run --coverage && yarn test:e2e",
|
|
|
|
"test:e2e": "NODE_OPTIONS='--experimental-specifier-resolution=node --no-warnings' VITE_TEST=true playwright test",
|
|
|
|
"test:slowmo": "TIMEOUT=100000 PLAYWRIGHT_SLOWMO=1000 yarn test:e2e --headed",
|
|
|
|
"test:e2e:full": "ALL_BROWSERS=1 yarn test:e2e",
|
2023-06-27 15:51:37 +03:00
|
|
|
"lint": "eslint src --ext .js,.ts,.jsx,.tsx --cache",
|
2022-07-04 16:15:01 +03:00
|
|
|
"preship": "yarn lint",
|
2023-06-21 16:22:16 +03:00
|
|
|
"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"
|
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
|
|
|
},
|
2023-06-21 16:22:16 +03:00
|
|
|
"dependencies": {
|
2023-08-31 17:51:36 +03:00
|
|
|
"@headlessui/react": "1.7.17",
|
2023-11-30 21:23:40 +03:00
|
|
|
"@tiptap/core": "2.1.13",
|
|
|
|
"@tiptap/extension-blockquote": "2.1.13",
|
|
|
|
"@tiptap/extension-document": "2.1.13",
|
|
|
|
"@tiptap/extension-hard-break": "2.1.13",
|
|
|
|
"@tiptap/extension-link": "2.1.13",
|
|
|
|
"@tiptap/extension-paragraph": "2.1.13",
|
|
|
|
"@tiptap/extension-placeholder": "2.1.13",
|
|
|
|
"@tiptap/extension-text": "2.1.13",
|
|
|
|
"@tiptap/pm": "2.1.13",
|
|
|
|
"@tiptap/react": "2.1.13",
|
2023-06-21 16:22:16 +03:00
|
|
|
"react": "17.0.2",
|
2023-08-24 11:33:03 +03:00
|
|
|
"react-dom": "17.0.2",
|
|
|
|
"react-string-replace": "1.1.1"
|
2023-06-21 16:22:16 +03:00
|
|
|
},
|
2022-07-04 16:15:01 +03:00
|
|
|
"devDependencies": {
|
2023-09-22 01:23:58 +03:00
|
|
|
"@playwright/test": "1.38.1",
|
2023-09-01 16:32:29 +03:00
|
|
|
"@testing-library/jest-dom": "5.17.0",
|
2023-06-21 16:37:12 +03:00
|
|
|
"@testing-library/react": "12.1.5",
|
2023-06-21 13:20:49 +03:00
|
|
|
"@testing-library/user-event": "14.4.3",
|
2023-08-24 11:46:44 +03:00
|
|
|
"@tryghost/i18n": "0.0.0",
|
2023-12-04 21:17:20 +03:00
|
|
|
"@vitejs/plugin-react": "4.2.1",
|
2023-12-13 11:11:05 +03:00
|
|
|
"@vitest/coverage-v8": "0.34.3",
|
2023-09-21 01:25:05 +03:00
|
|
|
"autoprefixer": "10.4.16",
|
2023-06-21 13:36:16 +03:00
|
|
|
"bson-objectid": "2.0.4",
|
2023-10-19 04:49:56 +03:00
|
|
|
"concurrently": "8.2.2",
|
2023-08-24 11:46:44 +03:00
|
|
|
"eslint-plugin-i18next": "6.0.3",
|
2023-06-27 15:51:37 +03:00
|
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
2023-07-11 16:11:02 +03:00
|
|
|
"eslint-plugin-react-refresh": "0.4.3",
|
|
|
|
"eslint-plugin-tailwindcss": "3.13.0",
|
2023-06-21 18:21:03 +03:00
|
|
|
"jsdom": "22.1.0",
|
2023-12-04 03:17:40 +03:00
|
|
|
"postcss": "8.4.32",
|
2023-12-04 21:42:05 +03:00
|
|
|
"tailwindcss": "3.3.6",
|
2023-12-13 11:11:05 +03:00
|
|
|
"vite": "4.5.1",
|
2023-08-09 12:15:28 +03:00
|
|
|
"vite-plugin-css-injected-by-js": "3.3.0",
|
2023-09-20 09:31:02 +03:00
|
|
|
"vite-plugin-svgr": "3.3.0",
|
2023-12-13 11:11:05 +03:00
|
|
|
"vitest": "0.34.3"
|
2022-07-04 15:53:12 +03:00
|
|
|
}
|
|
|
|
}
|