AFFiNE/packages/frontend/component/package.json

95 lines
2.9 KiB
JSON
Raw Normal View History

{
"name": "@affine/component",
"private": true,
2023-02-17 05:43:52 +03:00
"main": "./src/index.ts",
2023-03-11 08:15:19 +03:00
"exports": {
".": "./src/index.ts",
2023-04-04 02:13:43 +03:00
"./theme/*": "./src/theme/*",
"./*": "./src/components/*/index.tsx"
},
2023-04-11 01:41:07 +03:00
"peerDependencies": {
"@blocksuite/blocks": "*",
"@blocksuite/editor": "*",
"@blocksuite/global": "*",
"@blocksuite/icons": "2.1.34",
"@blocksuite/lit": "*",
"@blocksuite/store": "*"
2023-04-11 01:41:07 +03:00
},
"dependencies": {
2023-02-21 14:23:53 +03:00
"@affine/debug": "workspace:*",
"@affine/graphql": "workspace:*",
2023-02-23 10:07:46 +03:00
"@affine/i18n": "workspace:*",
2023-05-09 01:21:42 +03:00
"@affine/workspace": "workspace:*",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
2023-05-08 06:23:55 +03:00
"@emotion/cache": "^11.11.0",
2023-06-15 10:03:20 +03:00
"@emotion/react": "^11.11.1",
2023-05-08 06:23:55 +03:00
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
2023-10-12 05:46:52 +03:00
"@mui/base": "5.0.0-beta.19",
"@mui/icons-material": "^5.14.14",
"@mui/material": "^5.14.14",
2023-05-27 11:08:07 +03:00
"@popperjs/core": "^2.11.8",
2023-10-12 05:46:52 +03:00
"@radix-ui/react-avatar": "^1.0.4",
2023-05-27 11:08:07 +03:00
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-popover": "^1.0.7",
2023-05-29 18:15:22 +03:00
"@radix-ui/react-radio-group": "^1.1.3",
2023-10-12 05:46:52 +03:00
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toolbar": "^1.0.4",
2023-04-04 02:13:43 +03:00
"@toeverything/hooks": "workspace:*",
"@toeverything/infra": "workspace:*",
"@toeverything/theme": "^0.7.20",
"@vanilla-extract/dynamic": "^2.0.3",
"bytes": "^3.1.2",
"check-password-strength": "^2.0.7",
2023-07-22 16:10:20 +03:00
"clsx": "^2.0.0",
"dayjs": "^1.11.10",
"foxact": "^0.2.20",
"jotai": "^2.4.3",
"jotai-effect": "^0.2.2",
"jotai-scope": "^0.4.0",
2023-11-08 10:12:48 +03:00
"lit": "^3.0.2",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lottie-react": "^2.4.0",
2023-06-15 10:03:20 +03:00
"lottie-web": "^5.12.2",
"nanoid": "^5.0.1",
"next-themes": "^0.2.1",
2023-07-14 08:33:43 +03:00
"react": "18.2.0",
2023-10-16 15:47:06 +03:00
"react-datepicker": "^4.20.0",
2023-07-14 08:33:43 +03:00
"react-dom": "18.2.0",
2023-08-11 22:36:10 +03:00
"react-error-boundary": "^4.0.11",
"react-is": "^18.2.0",
"react-paginate": "^8.2.0",
"react-router-dom": "^6.16.0",
"react-virtuoso": "^4.6.2",
"rxjs": "^7.8.1",
"uuid": "^9.0.1"
},
"devDependencies": {
2023-11-10 08:23:29 +03:00
"@blocksuite/blocks": "0.0.0-20231110042432-4fdac4dc-nightly",
"@blocksuite/editor": "0.0.0-20231110042432-4fdac4dc-nightly",
"@blocksuite/global": "0.0.0-20231110042432-4fdac4dc-nightly",
"@blocksuite/icons": "2.1.35",
2023-11-10 08:23:29 +03:00
"@blocksuite/lit": "0.0.0-20231110042432-4fdac4dc-nightly",
"@blocksuite/store": "0.0.0-20231110042432-4fdac4dc-nightly",
"@storybook/jest": "^0.2.3",
"@storybook/testing-library": "^0.2.2",
"@testing-library/react": "^14.0.0",
"@types/bytes": "^3.1.3",
2023-10-16 15:47:06 +03:00
"@types/react": "^18.2.28",
"@types/react-datepicker": "^4.19.0",
2023-03-23 08:47:07 +03:00
"@types/react-dnd": "^3.0.2",
2023-10-16 15:47:06 +03:00
"@types/react-dom": "^18.2.13",
2023-08-25 19:52:33 +03:00
"@vanilla-extract/css": "^1.13.0",
2023-10-16 15:47:06 +03:00
"fake-indexeddb": "^5.0.0",
2023-08-25 19:52:33 +03:00
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vitest": "0.34.6",
2023-09-19 23:16:05 +03:00
"yjs": "^13.6.8"
2023-04-21 01:28:51 +03:00
},
2023-11-10 06:42:04 +03:00
"version": "0.10.0"
}