2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/apps/admin-x-settings/package.json

96 lines
3.1 KiB
JSON
Raw Normal View History

{
"name": "@tryghost/admin-x-settings",
2023-06-18 15:18:06 +02:00
"version": "0.0.8",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TryGhost/Ghost/tree/main/packages/admin-x-settings"
},
"author": "Ghost Foundation",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"main": "./dist/admin-x-settings.umd.cjs",
"module": "./dist/admin-x-settings.js",
"exports": {
".": {
"import": "./dist/admin-x-settings.js",
"require": "./dist/admin-x-settings.umd.cjs"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "concurrently \"vite preview\" \"vite build --watch\"",
"dev:start": "vite",
"build": "tsc && vite build",
"lint": "yarn run lint:js",
"lint:js": "eslint --ext .js,.ts,.cjs,.tsx --cache src test",
"test:unit": "yarn build",
"test:e2e": "NODE_OPTIONS='--experimental-specifier-resolution=node --no-warnings' VITE_TEST=true playwright test",
"test:slowmo": "TIMEOUT=100000 PLAYWRIGHT_SLOWMO=100 yarn test:e2e --headed",
"test:e2e:full": "ALL_BROWSERS=1 yarn test:e2e",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"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"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@ebay/nice-modal-react": "^1.2.10",
"@tryghost/timezone-data": "0.3.0",
"clsx": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"validator": "7.2.0"
},
"devDependencies": {
"@playwright/test": "^1.34.3",
2023-06-27 16:30:27 +02:00
"@storybook/addon-essentials": "7.0.24",
"@storybook/addon-interactions": "7.0.24",
"@storybook/addon-links": "7.0.24",
"@storybook/addon-styling": "1.3.1",
2023-06-27 16:30:27 +02:00
"@storybook/blocks": "7.0.24",
"@storybook/react": "7.0.24",
"@storybook/react-vite": "7.0.24",
"@storybook/testing-library": "0.2.0",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/line-clamp": "0.4.4",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"@vitejs/plugin-react": "4.0.1",
"autoprefixer": "10.4.14",
"concurrently": "8.2.0",
"eslint": "8.38.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-ghost": "3.2.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.3.4",
"eslint-plugin-tailwindcss": "3.11.0",
2023-05-29 04:07:03 +02:00
"postcss": "8.4.24",
"postcss-import": "^15.1.0",
"prop-types": "15.8.1",
"react-hot-toast": "^2.4.1",
"react-select": "^5.7.3",
"rollup-plugin-node-builtins": "2.1.2",
2023-06-27 16:30:27 +02:00
"storybook": "7.0.24",
2023-05-16 08:59:32 +02:00
"stylelint": "15.6.1",
"tailwindcss": "3.3.2",
2023-06-29 02:05:46 +02:00
"typescript": "5.1.6",
2023-05-26 15:05:53 +02:00
"vite": "4.3.9",
"vite-plugin-svgr": "3.2.0",
2023-07-04 12:19:03 +02:00
"vitest": "0.32.4"
}
}