omnivore/packages/web/package.json

112 lines
3.6 KiB
JSON
Raw Normal View History

2022-02-11 17:24:33 +00:00
{
"name": "@omnivore/web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "NEXT_PUBLIC_APP_ENV=local next dev",
"dev:demo": "NEXT_PUBLIC_APP_ENV=demo next dev",
"dev:dev": "NEXT_PUBLIC_APP_ENV=dev next dev",
"dev:prod": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:typecheck": "tsc --noEmit",
2022-03-31 15:28:48 +00:00
"upgrade-psdpdfkit": "cp -R '../../node_modules/pspdfkit/dist/pspdfkit-lib' public/pspdfkit-lib",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s public"
2022-02-11 17:24:33 +00:00
},
"dependencies": {
"@floating-ui/react": "^0.26.9",
2024-03-31 15:58:21 +00:00
"@google-recaptcha/react": "^1.0.3",
2022-02-11 17:24:33 +00:00
"@radix-ui/react-avatar": "^0.1.1",
2022-05-09 17:12:09 +00:00
"@radix-ui/react-checkbox": "^0.1.5",
2023-10-04 10:04:58 +00:00
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
2022-02-11 17:24:33 +00:00
"@radix-ui/react-id": "^0.1.1",
2024-03-05 02:10:16 +00:00
"@radix-ui/react-popover": "1.0.7",
"@radix-ui/react-progress": "^1.0.1",
2022-02-11 17:24:33 +00:00
"@radix-ui/react-separator": "^0.1.0",
2023-10-04 10:04:58 +00:00
"@radix-ui/react-slider": "^1.1.0",
2023-03-07 07:39:49 +00:00
"@radix-ui/react-switch": "^1.0.1",
"@sentry/nextjs": "^7.42.0",
2022-02-11 17:24:33 +00:00
"@stitches/react": "^1.2.5",
"antd": "4.24.3",
"axios": "^1.2.0",
"cookie": "^0.5.0",
2023-08-14 05:10:17 +00:00
"csv-file-validator": "^2.1.0",
2023-01-02 08:12:08 +00:00
"dayjs": "^1.11.7",
2022-02-11 17:24:33 +00:00
"diff-match-patch": "^1.0.5",
2023-04-15 00:22:54 +00:00
"epubjs": "^0.3.93",
2022-02-11 17:24:33 +00:00
"graphql-request": "^3.6.1",
"kbar": "^0.1.0-beta.35",
"loadjs": "^4.3.0-rc1",
2023-03-24 12:47:14 +00:00
"markdown-it": "^13.0.1",
2023-06-16 04:51:21 +00:00
"match-sorter": "^6.3.1",
2022-02-11 17:24:33 +00:00
"nanoid": "^3.1.29",
"next": "^13.5.6",
2023-03-31 04:26:03 +00:00
"node-html-markdown": "^1.3.0",
2023-07-31 06:18:55 +00:00
"papaparse": "^5.4.1",
2022-02-11 17:24:33 +00:00
"phosphor-react": "^1.4.0",
2023-09-13 02:22:45 +00:00
"posthog-js": "^1.78.2",
2023-10-27 02:14:54 +00:00
"pspdfkit": "^2023.4.6",
"re-resizable": "^6.9.11",
"react": "^18.2.0",
"react-color": "^2.19.3",
2024-03-05 01:18:21 +00:00
"react-colorful": "^5.5.1",
"react-dom": "^18.2.0",
2022-11-06 22:30:18 +00:00
"react-dropzone": "^14.2.3",
2022-02-11 17:24:33 +00:00
"react-hot-toast": "^2.1.1",
2023-06-16 04:51:21 +00:00
"react-input-autosize": "^3.0.0",
"react-markdown": "^8.0.6",
"react-markdown-editor-lite": "^1.3.4",
"react-masonry-css": "^1.0.16",
2023-06-27 03:51:12 +00:00
"react-sliding-pane": "^7.3.0",
"react-spinners": "^0.13.7",
2022-07-15 20:43:59 +00:00
"react-super-responsive-table": "^5.2.1",
2022-04-21 21:00:09 +00:00
"react-topbar-progress-indicator": "^4.1.1",
2024-03-05 01:18:21 +00:00
"remark-gfm": "^3.0.1",
"sharp": "^0.32.6",
2022-02-11 17:24:33 +00:00
"swr": "^1.0.1",
2023-08-10 05:56:05 +00:00
"uuid": "^8.3.2",
"yet-another-react-lightbox": "^3.12.0"
2022-02-11 17:24:33 +00:00
},
"devDependencies": {
2022-03-31 15:28:48 +00:00
"@babel/core": "^7.17.5",
2023-02-27 03:39:30 +00:00
"@next/bundle-analyzer": "^13.2.1",
2022-04-14 22:45:41 +00:00
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
2022-03-31 15:28:48 +00:00
"@storybook/testing-library": "^0.0.9",
"@testing-library/jest-dom": "^5.16.1",
2022-02-11 17:24:33 +00:00
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "13.5.0",
2022-02-11 17:24:33 +00:00
"@types/cookie": "^0.4.1",
"@types/diff-match-patch": "^1.0.32",
"@types/jest": "^27.0.2",
"@types/loadjs": "^4.0.1",
2022-03-18 04:30:06 +00:00
"@types/lodash.debounce": "^4.0.6",
2023-03-24 12:52:39 +00:00
"@types/markdown-it": "^12.2.3",
2023-07-31 06:18:55 +00:00
"@types/papaparse": "^5.3.7",
"@types/react": "^18.2.0",
"@types/react-color": "^3.0.9",
"@types/react-dom": "^18.2.0",
"@types/react-input-autosize": "^2.2.1",
2022-02-11 17:24:33 +00:00
"@types/uuid": "^8.3.1",
"babel-jest": "^27.4.5",
2022-03-31 15:28:48 +00:00
"babel-loader": "^8.2.3",
"eslint-config-next": "^13.5.6",
2022-02-11 17:24:33 +00:00
"eslint-plugin-functional": "^4.0.2",
"eslint-plugin-react": "^7.28.0",
"graphql": "^15.6.1",
2022-03-31 15:28:48 +00:00
"jest": "^27.4.5",
"storybook-addon-next-router": "^3.1.1"
2022-02-11 17:24:33 +00:00
},
"volta": {
"extends": "../../package.json"
2022-02-11 17:24:33 +00:00
}
2024-03-31 15:58:21 +00:00
}