mirror of
https://github.com/status-im/status-web.git
synced 2025-01-13 06:05:20 +00:00
45e36b2360
* add ghost api * connect blog overview page * connect and render post detail * add processing to server * update blog detail page * add eslint-plugin-tailwindcss * add @tanstack/react-query * truncate text by numberOfLines * use ComponentPropsWithRef to infer style prop type * update ghost fns * update index * add tag page * add author page * update / * update /tag * update /author * update detail page * fix posts type * disable redirect * remove global background - not found pages - pages without common layout (preview) * tmp: hide nav on smaller screens * update app layout spacing * remove text truncating * update / spacing and sizing * update .vscode/settings.json * update .eslintrc * update prettier-plugin-tailwindcss * sort tailwind classes * add packages/eslint-config-custom * use turbo lint * use tailwind.config.cjs see https://github.com/francoismassart/eslint-plugin-tailwindcss/issues/212 * reset global line-height * fix lint-staged * update color tokens * update spacing and sizes * Update apps/website/src/lib/ghost.ts Co-authored-by: Pavel <14926950+prichodko@users.noreply.github.com> * update layout max width * update card min width * set line-height * set overflow on pre * use flex for markdown content to prevent overflow * collect follow-ups * add visibility filter * update page count * rename var * remove filter * use prod ghost api key * update ghost api * revert line-height * add limit to getPosts params * update visible posts * add related articles * add env vars to gh * rename eslint config package * update gh vars * rename envs * set emtpy array to related posts * fix lint-staged * prevent importing server envs on client * set limit --------- Co-authored-by: Felicio Mununga <felicio@users.noreply.github.com>
77 lines
2.3 KiB
JSON
77 lines
2.3 KiB
JSON
{
|
|
"name": "@status-im/components",
|
|
"version": "0.0.1",
|
|
"sideEffects": [
|
|
"*.css"
|
|
],
|
|
"private": true,
|
|
"#module": "./src/index.tsx",
|
|
"types": "./src/index.tsx",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"#types": "./dist/types/index.d.ts",
|
|
"files": [
|
|
"types",
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite build --watch --mode development",
|
|
"build": "vite build",
|
|
"postbuild": "yarn build:types",
|
|
"build:types": "tsc --noEmit false --emitDeclarationOnly || true",
|
|
"lint": "eslint src",
|
|
"typecheck": "tsc",
|
|
"storybook": "node ./scripts/storybook.js",
|
|
"storybook:dev": "storybook dev -p 3001",
|
|
"storybook:build": "storybook build",
|
|
"clean": "rimraf node_modules dist .turbo storybook-static .tamagui"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.2.0"
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-accordion": "^1.1.1",
|
|
"@radix-ui/react-dialog": "^1.0.3",
|
|
"@radix-ui/react-dropdown-menu": "^2.0.4",
|
|
"@radix-ui/react-popover": "^1.0.5",
|
|
"@radix-ui/react-tabs": "^1.0.3",
|
|
"@radix-ui/react-toast": "^1.1.3",
|
|
"@radix-ui/react-tooltip": "^1.0.5",
|
|
"@status-im/colors": "*",
|
|
"@status-im/icons": "*",
|
|
"@tamagui/animations-css": "1.11.1",
|
|
"@tamagui/animations-react-native": "1.11.1",
|
|
"@tamagui/core": "1.11.1",
|
|
"@tamagui/font-inter": "1.11.1",
|
|
"@tamagui/react-native-media-driver": "1.11.1",
|
|
"@tamagui/shorthands": "1.11.1",
|
|
"@tamagui/theme-base": "1.11.1",
|
|
"date-fns": "^2.30.0",
|
|
"expo-blur": "^12.2.2",
|
|
"expo-linear-gradient": "^12.1.2",
|
|
"react-day-picker": "^8.7.1",
|
|
"tamagui": "1.11.1",
|
|
"zustand": "^4.3.7"
|
|
},
|
|
"devDependencies": {
|
|
"@storybook/addon-essentials": "7.0.2",
|
|
"@storybook/addon-interactions": "7.0.2",
|
|
"@storybook/addon-links": "7.0.2",
|
|
"@storybook/blocks": "7.0.2",
|
|
"@storybook/react": "7.0.2",
|
|
"@storybook/react-vite": "7.0.2",
|
|
"@storybook/testing-library": "^0.1.0",
|
|
"@tamagui/vite-plugin": "1.11.1",
|
|
"@vitejs/plugin-react-swc": "^3.2.0",
|
|
"@status-im/eslint-config": "*",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-native-svg": "^13.8.0",
|
|
"react-native-web": "^0.18.12",
|
|
"storybook": "7.0.2",
|
|
"storybook-addon-designs": "7.0.0-beta.2",
|
|
"storybook-dark-mode": "^3.0.0",
|
|
"vite": "^4.2.1"
|
|
}
|
|
}
|