2020-10-01 00:59:20 +03:00
|
|
|
{
|
2023-10-26 07:52:36 +03:00
|
|
|
"name": "owncast-web",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"dev": "next dev",
|
2023-11-24 09:07:21 +03:00
|
|
|
"build": "next build",
|
2023-10-26 07:52:36 +03:00
|
|
|
"start": "next start",
|
|
|
|
"lint": "eslint --fix --ext .js,.ts,.tsx types/ pages/ components/ stories/",
|
|
|
|
"storybook": "storybook dev -p 6006",
|
|
|
|
"build-storybook": "storybook build",
|
|
|
|
"build-styles": "cd ./style-definitions && style-dictionary build && ./build.sh && cd -",
|
|
|
|
"test": "jest",
|
|
|
|
"format": "prettier --write **/*.{js,ts,jsx,tsx,css,md}"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-03-25 13:11:02 +03:00
|
|
|
"@ant-design/icons": "4.8.3",
|
2024-09-17 13:21:29 +03:00
|
|
|
"@codemirror/lang-css": "6.3.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"@codemirror/lang-html": "^6.4.2",
|
|
|
|
"@codemirror/lang-javascript": "^6.1.2",
|
2024-04-15 14:59:19 +03:00
|
|
|
"@codemirror/lang-markdown": "6.2.5",
|
2024-04-18 18:23:18 +03:00
|
|
|
"@codemirror/language-data": "6.5.1",
|
2023-10-26 07:52:36 +03:00
|
|
|
"@fontsource/inter": "^5.0.0",
|
2024-09-17 22:06:21 +03:00
|
|
|
"@fontsource/poppins": "5.1.0",
|
2023-11-24 09:07:21 +03:00
|
|
|
"@next/bundle-analyzer": "^14.0.0",
|
2024-09-16 10:06:04 +03:00
|
|
|
"@uiw/codemirror-theme-bbedit": "4.23.2",
|
2024-09-16 16:40:39 +03:00
|
|
|
"@uiw/react-codemirror": "4.23.2",
|
2023-10-26 07:52:36 +03:00
|
|
|
"@xstate/react": "3.2.2",
|
2024-03-22 22:31:14 +03:00
|
|
|
"antd": "4.24.16",
|
2023-10-26 07:52:36 +03:00
|
|
|
"autoprefixer": "^10.4.14",
|
|
|
|
"chart.js": "^4.2.0",
|
2024-01-01 21:12:12 +03:00
|
|
|
"classnames": "2.5.1",
|
2024-03-07 08:13:13 +03:00
|
|
|
"date-fns": "^3.0.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"graphemer": "^1.4.0",
|
|
|
|
"interweave": "^13.0.0",
|
|
|
|
"interweave-autolink": "^5.1.0",
|
|
|
|
"lodash": "4.17.21",
|
2024-09-21 00:36:30 +03:00
|
|
|
"next": "14.2.12",
|
2023-10-26 07:52:36 +03:00
|
|
|
"next-pwa": "^5.6.0",
|
|
|
|
"next-with-less": "3.0.1",
|
|
|
|
"picmo": "5.8.5",
|
|
|
|
"postcss-flexbugs-fixes": "5.0.2",
|
2024-04-30 02:28:11 +03:00
|
|
|
"react": "18.3.1",
|
2023-10-26 07:52:36 +03:00
|
|
|
"react-chartjs-2": "^5.2.0",
|
2024-04-30 02:28:11 +03:00
|
|
|
"react-dom": "18.3.1",
|
2023-10-26 07:52:36 +03:00
|
|
|
"react-error-boundary": "^4.0.0",
|
2024-09-16 20:14:05 +03:00
|
|
|
"react-hotkeys-hook": "4.5.1",
|
2023-10-26 07:52:36 +03:00
|
|
|
"react-linkify": "1.0.0-alpha",
|
2023-11-16 20:04:39 +03:00
|
|
|
"react-markdown": "9.0.1",
|
2024-09-16 21:54:14 +03:00
|
|
|
"react-virtuoso": "4.10.4",
|
2023-10-26 07:52:36 +03:00
|
|
|
"recoil": "0.7.7",
|
|
|
|
"regexpu-core": "^5.3.2",
|
|
|
|
"sanitize-html": "^2.11.0",
|
2024-08-19 17:11:59 +03:00
|
|
|
"sharp": "0.33.5",
|
2024-09-17 11:06:38 +03:00
|
|
|
"ua-parser-js": "1.0.39",
|
2023-10-26 07:52:36 +03:00
|
|
|
"video.js": "^8.3.0",
|
|
|
|
"workbox-precaching": "^7.0.0",
|
|
|
|
"workbox-window": "^7.0.0",
|
2023-10-26 23:24:51 +03:00
|
|
|
"xstate": "4.38.3",
|
2024-09-15 16:45:46 +03:00
|
|
|
"yaml": "2.5.1"
|
2023-10-26 07:52:36 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-02 09:20:05 +03:00
|
|
|
"@babel/core": "7.25.2",
|
2024-06-03 01:02:24 +03:00
|
|
|
"@commitlint/cli": "^19.3.0",
|
|
|
|
"@commitlint/config-conventional": "^19.2.2",
|
2024-02-15 16:50:39 +03:00
|
|
|
"@mdx-js/react": "3.0.1",
|
2024-06-27 16:36:04 +03:00
|
|
|
"@storybook/addon-a11y": "7.6.20",
|
|
|
|
"@storybook/addon-actions": "7.6.20",
|
|
|
|
"@storybook/addon-docs": "7.6.20",
|
|
|
|
"@storybook/addon-essentials": "7.6.20",
|
|
|
|
"@storybook/addon-links": "7.6.20",
|
2023-10-26 07:52:36 +03:00
|
|
|
"@storybook/addon-mdx-gfm": "^7.5.1",
|
|
|
|
"@storybook/addon-postcss": "2.0.0",
|
2024-04-15 04:55:16 +03:00
|
|
|
"@storybook/addon-styling-webpack": "^1.0.0",
|
2024-06-27 16:36:04 +03:00
|
|
|
"@storybook/addon-viewport": "7.6.20",
|
|
|
|
"@storybook/cli": "7.6.20",
|
2023-10-26 07:52:36 +03:00
|
|
|
"@storybook/mdx2-csf": "1.1.0",
|
|
|
|
"@storybook/nextjs": "^7.5.1",
|
|
|
|
"@storybook/preset-scss": "^1.0.3",
|
2024-06-27 16:36:04 +03:00
|
|
|
"@storybook/react": "7.6.20",
|
2023-10-26 07:52:36 +03:00
|
|
|
"@storybook/testing-library": "0.2.2",
|
|
|
|
"@svgr/webpack": "8.1.0",
|
2023-11-24 03:26:22 +03:00
|
|
|
"@types/chart.js": "2.9.41",
|
2023-10-26 07:52:36 +03:00
|
|
|
"@types/classnames": "2.3.1",
|
|
|
|
"@types/jest": "^29.5.0",
|
2024-07-28 10:35:44 +03:00
|
|
|
"@types/markdown-it": "14.1.2",
|
2024-09-15 16:45:25 +03:00
|
|
|
"@types/node": "20.16.5",
|
2024-09-19 22:19:01 +03:00
|
|
|
"@types/prop-types": "15.7.13",
|
2024-09-20 16:54:12 +03:00
|
|
|
"@types/react": "18.3.7",
|
2023-11-10 22:30:34 +03:00
|
|
|
"@types/react-linkify": "1.0.4",
|
2023-10-26 07:52:36 +03:00
|
|
|
"@types/sanitize-html": "^2.9.0",
|
2023-11-11 12:43:13 +03:00
|
|
|
"@types/ua-parser-js": "0.7.39",
|
2023-10-26 07:52:36 +03:00
|
|
|
"@types/video.js": "^7.3.50",
|
2024-09-20 10:24:29 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "8.6.0",
|
|
|
|
"@typescript-eslint/parser": "8.6.0",
|
2024-09-19 18:15:26 +03:00
|
|
|
"babel-loader": "9.2.1",
|
2024-09-17 04:09:56 +03:00
|
|
|
"chromatic": "11.10.2",
|
2024-05-25 19:03:49 +03:00
|
|
|
"css-loader": "7.1.2",
|
2023-10-26 07:52:36 +03:00
|
|
|
"cypress": "^13.2.0",
|
2024-09-20 00:25:28 +03:00
|
|
|
"eslint": "8.57.1",
|
2023-10-26 07:52:36 +03:00
|
|
|
"eslint-config-airbnb": "19.0.4",
|
2024-09-21 00:36:30 +03:00
|
|
|
"eslint-config-next": "14.2.12",
|
2023-12-05 14:42:46 +03:00
|
|
|
"eslint-config-prettier": "9.1.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"eslint-plugin-import": "^2.27.5",
|
2024-09-15 16:45:04 +03:00
|
|
|
"eslint-plugin-jsx-a11y": "6.10.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
2024-09-16 07:34:59 +03:00
|
|
|
"eslint-plugin-react": "7.36.1",
|
2024-04-30 02:28:11 +03:00
|
|
|
"eslint-plugin-react-hooks": "4.6.2",
|
2024-02-21 14:00:45 +03:00
|
|
|
"eslint-plugin-storybook": "0.8.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"handlebars": "^4.7.7",
|
2023-12-22 21:22:46 +03:00
|
|
|
"html-webpack-plugin": "5.6.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"install": "^0.13.0",
|
2024-04-10 04:22:43 +03:00
|
|
|
"knip": "^5.0.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"less": "4.2.0",
|
2024-04-10 04:21:21 +03:00
|
|
|
"less-loader": "12.2.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"mdx-mermaid": "^2.0.0",
|
|
|
|
"mermaid": "^10.0.0",
|
|
|
|
"npm": "^10.0.0",
|
|
|
|
"postcss": "^8.4.31",
|
2024-07-16 16:19:56 +03:00
|
|
|
"prettier": "3.3.3",
|
2023-10-26 07:52:36 +03:00
|
|
|
"resolve-url-loader": "^5.0.0",
|
2024-09-21 05:31:32 +03:00
|
|
|
"sass": "1.79.1",
|
2024-04-10 04:20:13 +03:00
|
|
|
"sass-loader": "^14.0.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"storybook": "^7.5.1",
|
2024-04-15 05:18:36 +03:00
|
|
|
"storybook-addon-fetch-mock": "2.0.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"storybook-preset-less": "1.1.3",
|
2024-01-21 00:53:00 +03:00
|
|
|
"style-dictionary": "3.9.2",
|
2024-04-18 22:27:31 +03:00
|
|
|
"style-loader": "4.0.0",
|
2024-06-03 19:38:59 +03:00
|
|
|
"stylelint": "^16.0.0",
|
2024-06-03 19:47:11 +03:00
|
|
|
"stylelint-config-standard": "^36.0.0",
|
2024-06-03 19:00:35 +03:00
|
|
|
"stylelint-config-standard-scss": "^13.0.0",
|
2023-10-26 07:52:36 +03:00
|
|
|
"ts-jest": "^29.1.0",
|
2024-09-17 06:22:00 +03:00
|
|
|
"typescript": "5.6.2"
|
2023-10-26 07:52:36 +03:00
|
|
|
}
|
2024-09-15 15:52:20 +03:00
|
|
|
}
|