2018-12-20 02:25:04 -06:00
|
|
|
{
|
2019-07-23 19:17:41 -05:00
|
|
|
"author": "Grafana Labs",
|
|
|
|
"license": "Apache-2.0",
|
2019-02-21 04:25:06 -06:00
|
|
|
"name": "@grafana/ui",
|
2022-09-27 07:07:16 -05:00
|
|
|
"version": "9.3.0-pre",
|
2019-02-21 04:53:27 -06:00
|
|
|
"description": "Grafana Components Library",
|
|
|
|
"keywords": [
|
2019-07-11 05:47:58 -05:00
|
|
|
"grafana",
|
2019-02-21 04:53:27 -06:00
|
|
|
"react",
|
2019-07-23 19:17:41 -05:00
|
|
|
"react-component",
|
|
|
|
"typescript"
|
2019-02-21 04:53:27 -06:00
|
|
|
],
|
2022-08-03 08:47:09 -05:00
|
|
|
"sideEffects": false,
|
2019-07-23 19:17:41 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-02-27 11:00:36 -06:00
|
|
|
"url": "http://github.com/grafana/grafana.git",
|
|
|
|
"directory": "packages/grafana-ui"
|
2019-07-23 19:17:41 -05:00
|
|
|
},
|
2018-12-21 05:27:43 -06:00
|
|
|
"main": "src/index.ts",
|
2022-08-03 08:47:09 -05:00
|
|
|
"types": "src/index.ts",
|
|
|
|
"publishConfig": {
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"module": "dist/esm/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"files": [
|
2022-10-03 04:41:38 -05:00
|
|
|
"./dist",
|
|
|
|
"!./dist/storybook",
|
2022-09-28 10:04:55 -05:00
|
|
|
"./README.md",
|
|
|
|
"./CHANGELOG.md",
|
2022-10-03 04:41:38 -05:00
|
|
|
"./LICENSE_APACHE2"
|
2022-08-03 08:47:09 -05:00
|
|
|
],
|
2018-12-20 02:25:04 -06:00
|
|
|
"scripts": {
|
2022-08-03 08:47:09 -05:00
|
|
|
"build": "tsc -p ./tsconfig.build.json && rollup -c rollup.config.ts",
|
2020-02-27 11:00:36 -06:00
|
|
|
"bundle": "rollup -c rollup.config.ts",
|
2022-08-03 08:47:09 -05:00
|
|
|
"clean": "rimraf ./dist ./compiled ./package.tgz",
|
2021-12-06 04:15:53 -06:00
|
|
|
"storybook": "start-storybook -p 9001 -c .storybook",
|
|
|
|
"storybook:build": "build-storybook -o ./dist/storybook -c .storybook",
|
2022-08-23 08:47:14 -05:00
|
|
|
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
|
|
|
|
"generate-icons-bundle-cache-file": "node ./scripts/generate-icon-bundle.js"
|
2018-12-20 02:25:04 -06:00
|
|
|
},
|
2021-08-31 05:55:05 -05:00
|
|
|
"browserslist": [
|
|
|
|
"defaults",
|
|
|
|
"not IE 11"
|
|
|
|
],
|
2018-12-21 07:23:32 -06:00
|
|
|
"dependencies": {
|
2022-05-18 10:13:02 -05:00
|
|
|
"@emotion/css": "11.9.0",
|
2022-07-27 10:02:48 -05:00
|
|
|
"@emotion/react": "11.9.3",
|
2022-09-27 07:07:16 -05:00
|
|
|
"@grafana/data": "9.3.0-pre",
|
|
|
|
"@grafana/e2e-selectors": "9.3.0-pre",
|
|
|
|
"@grafana/schema": "9.3.0-pre",
|
2022-10-31 10:45:46 -05:00
|
|
|
"@leeoniya/ufuzzy": "0.8.0",
|
2022-08-23 08:58:58 -05:00
|
|
|
"@monaco-editor/react": "4.4.5",
|
2022-05-20 07:07:07 -05:00
|
|
|
"@popperjs/core": "2.11.5",
|
2022-11-02 04:39:32 -05:00
|
|
|
"@react-aria/button": "3.6.1",
|
|
|
|
"@react-aria/dialog": "3.3.1",
|
|
|
|
"@react-aria/focus": "3.8.0",
|
|
|
|
"@react-aria/menu": "3.6.1",
|
|
|
|
"@react-aria/overlays": "3.10.1",
|
|
|
|
"@react-aria/utils": "3.13.1",
|
|
|
|
"@react-stately/menu": "3.4.1",
|
2022-05-20 07:07:07 -05:00
|
|
|
"@sentry/browser": "6.19.7",
|
2022-02-07 07:08:10 -06:00
|
|
|
"ansicolor": "1.1.100",
|
2021-10-27 08:21:07 -05:00
|
|
|
"calculate-size": "1.1.1",
|
2021-12-14 06:15:23 -06:00
|
|
|
"classnames": "2.3.1",
|
2022-11-01 08:25:26 -05:00
|
|
|
"core-js": "3.26.0",
|
2020-01-07 04:59:11 -06:00
|
|
|
"d3": "5.15.0",
|
2022-07-25 09:31:39 -05:00
|
|
|
"date-fns": "2.29.1",
|
2020-10-15 07:41:25 -05:00
|
|
|
"hoist-non-react-statics": "3.3.2",
|
2022-10-06 10:34:04 -05:00
|
|
|
"i18next": "^21.9.2",
|
2022-06-14 05:53:22 -05:00
|
|
|
"immutable": "4.1.0",
|
2021-12-22 09:06:29 -06:00
|
|
|
"is-hotkey": "0.2.0",
|
2022-01-05 05:08:13 -06:00
|
|
|
"jquery": "3.6.0",
|
2021-03-02 03:13:27 -06:00
|
|
|
"lodash": "4.17.21",
|
2021-11-08 08:52:05 -06:00
|
|
|
"memoize-one": "6.0.0",
|
2022-07-22 05:00:54 -05:00
|
|
|
"moment": "2.29.4",
|
2022-08-23 08:58:58 -05:00
|
|
|
"monaco-editor": "0.34.0",
|
2022-10-19 19:03:44 -05:00
|
|
|
"ol": "7.1.0",
|
2022-09-09 09:18:20 -05:00
|
|
|
"prismjs": "1.29.0",
|
2022-09-28 07:12:15 -05:00
|
|
|
"rc-cascader": "3.7.0",
|
2022-01-07 10:33:26 -06:00
|
|
|
"rc-drawer": "4.4.3",
|
2022-11-02 06:00:49 -05:00
|
|
|
"rc-slider": "10.0.1",
|
2020-03-25 04:10:26 -05:00
|
|
|
"rc-time-picker": "^3.7.3",
|
2022-11-02 06:00:49 -05:00
|
|
|
"rc-tooltip": "5.2.2",
|
2021-08-18 04:23:34 -05:00
|
|
|
"react-beautiful-dnd": "13.1.0",
|
2022-09-30 08:42:04 -05:00
|
|
|
"react-calendar": "3.9.0",
|
2022-10-03 05:38:18 -05:00
|
|
|
"react-colorful": "5.6.1",
|
2022-06-14 05:43:31 -05:00
|
|
|
"react-custom-scrollbars-2": "4.5.0",
|
2022-07-27 10:02:48 -05:00
|
|
|
"react-dropzone": "14.2.2",
|
2022-05-18 03:47:33 -05:00
|
|
|
"react-highlight-words": "0.18.0",
|
2022-02-23 05:22:45 -06:00
|
|
|
"react-hook-form": "7.5.3",
|
2022-10-06 10:34:04 -05:00
|
|
|
"react-i18next": "^11.18.6",
|
2022-05-31 04:40:03 -05:00
|
|
|
"react-inlinesvg": "3.0.0",
|
2022-05-18 05:05:27 -05:00
|
|
|
"react-popper": "2.3.0",
|
2022-02-08 15:58:20 -06:00
|
|
|
"react-popper-tooltip": "^4.3.1",
|
2021-05-12 09:04:21 -05:00
|
|
|
"react-router-dom": "^5.2.0",
|
2022-07-26 04:19:23 -05:00
|
|
|
"react-select": "5.4.0",
|
2021-10-27 08:21:07 -05:00
|
|
|
"react-select-event": "^5.1.0",
|
2022-05-18 05:51:04 -05:00
|
|
|
"react-table": "7.8.0",
|
2022-01-07 10:33:26 -06:00
|
|
|
"react-transition-group": "4.4.2",
|
2022-06-15 04:02:08 -05:00
|
|
|
"react-use": "17.4.0",
|
2022-05-20 07:07:07 -05:00
|
|
|
"react-window": "1.8.7",
|
2022-07-27 10:02:48 -05:00
|
|
|
"rxjs": "7.5.6",
|
2022-09-06 09:23:48 -05:00
|
|
|
"slate": "0.47.9",
|
|
|
|
"slate-plain-serializer": "0.7.11",
|
|
|
|
"slate-react": "0.22.10",
|
2022-01-07 10:33:26 -06:00
|
|
|
"tinycolor2": "1.4.2",
|
2022-05-17 06:08:10 -05:00
|
|
|
"tslib": "2.4.0",
|
2022-07-08 08:45:16 -05:00
|
|
|
"uplot": "1.6.22",
|
2022-01-07 10:33:26 -06:00
|
|
|
"uuid": "8.3.2"
|
2018-12-21 07:23:32 -06:00
|
|
|
},
|
2018-12-20 09:56:46 -06:00
|
|
|
"devDependencies": {
|
2022-09-07 03:57:22 -05:00
|
|
|
"@babel/core": "7.19.0",
|
2022-02-10 07:37:39 -06:00
|
|
|
"@grafana/tsconfig": "^1.2.0-rc1",
|
2021-10-27 08:21:07 -05:00
|
|
|
"@mdx-js/react": "1.6.22",
|
2022-05-03 11:17:55 -05:00
|
|
|
"@rollup/plugin-node-resolve": "13.3.0",
|
2022-10-03 02:23:47 -05:00
|
|
|
"@storybook/addon-a11y": "6.5.12",
|
|
|
|
"@storybook/addon-actions": "6.5.12",
|
|
|
|
"@storybook/addon-docs": "6.5.12",
|
|
|
|
"@storybook/addon-essentials": "6.5.12",
|
2021-11-29 10:21:04 -06:00
|
|
|
"@storybook/addon-knobs": "6.4.0",
|
2022-10-03 02:23:47 -05:00
|
|
|
"@storybook/addon-storysource": "6.5.12",
|
|
|
|
"@storybook/addons": "6.5.12",
|
|
|
|
"@storybook/api": "6.5.12",
|
|
|
|
"@storybook/builder-webpack5": "6.5.12",
|
|
|
|
"@storybook/client-api": "6.5.12",
|
|
|
|
"@storybook/components": "6.5.12",
|
|
|
|
"@storybook/core-events": "6.5.12",
|
|
|
|
"@storybook/manager-webpack5": "6.5.12",
|
|
|
|
"@storybook/mdx2-csf": "0.0.3",
|
|
|
|
"@storybook/preset-scss": "1.0.3",
|
|
|
|
"@storybook/react": "6.5.12",
|
|
|
|
"@storybook/theming": "6.5.12",
|
2022-07-27 10:02:48 -05:00
|
|
|
"@swc/helpers": "0.4.3",
|
2022-04-07 08:25:16 -05:00
|
|
|
"@testing-library/dom": "8.13.0",
|
2022-05-20 07:07:07 -05:00
|
|
|
"@testing-library/jest-dom": "5.16.4",
|
2022-03-23 09:56:44 -05:00
|
|
|
"@testing-library/react": "12.1.4",
|
2022-07-27 10:02:48 -05:00
|
|
|
"@testing-library/react-hooks": "8.0.1",
|
2022-08-26 07:30:34 -05:00
|
|
|
"@testing-library/user-event": "14.4.3",
|
2021-12-14 06:15:23 -06:00
|
|
|
"@types/classnames": "2.3.0",
|
2019-10-03 07:30:24 -05:00
|
|
|
"@types/common-tags": "^1.8.0",
|
2022-06-13 13:06:24 -05:00
|
|
|
"@types/d3": "7.4.0",
|
2022-05-20 07:07:07 -05:00
|
|
|
"@types/enzyme": "3.10.12",
|
2021-10-27 08:21:07 -05:00
|
|
|
"@types/enzyme-adapter-react-16": "1.0.6",
|
2021-05-17 07:18:54 -05:00
|
|
|
"@types/hoist-non-react-statics": "3.3.1",
|
2022-01-07 10:33:26 -06:00
|
|
|
"@types/is-hotkey": "0.1.7",
|
2022-07-27 10:02:48 -05:00
|
|
|
"@types/jest": "28.1.6",
|
2022-03-23 09:56:44 -05:00
|
|
|
"@types/jquery": "3.5.14",
|
2022-05-20 07:07:07 -05:00
|
|
|
"@types/lodash": "4.14.182",
|
2022-01-07 10:33:26 -06:00
|
|
|
"@types/mock-raf": "1.0.3",
|
2022-07-27 10:02:48 -05:00
|
|
|
"@types/node": "16.11.45",
|
2022-01-28 03:07:34 -06:00
|
|
|
"@types/prismjs": "1.26.0",
|
2022-03-23 09:56:44 -05:00
|
|
|
"@types/react": "17.0.42",
|
2022-01-07 10:33:26 -06:00
|
|
|
"@types/react-beautiful-dnd": "13.1.2",
|
2022-05-20 07:07:07 -05:00
|
|
|
"@types/react-calendar": "3.5.1",
|
2022-01-07 10:33:26 -06:00
|
|
|
"@types/react-color": "3.0.6",
|
2022-03-23 09:56:44 -05:00
|
|
|
"@types/react-dom": "17.0.14",
|
2022-09-02 10:36:44 -05:00
|
|
|
"@types/react-highlight-words": "0.16.4",
|
2022-02-07 07:08:10 -06:00
|
|
|
"@types/react-router-dom": "5.3.3",
|
2022-05-20 07:07:07 -05:00
|
|
|
"@types/react-table": "7.7.12",
|
2021-08-18 04:23:34 -05:00
|
|
|
"@types/react-test-renderer": "17.0.1",
|
2022-07-27 10:02:48 -05:00
|
|
|
"@types/react-transition-group": "4.4.5",
|
2022-01-07 10:33:26 -06:00
|
|
|
"@types/react-window": "1.8.5",
|
2022-09-06 09:23:48 -05:00
|
|
|
"@types/slate": "0.47.9",
|
2022-01-07 10:33:26 -06:00
|
|
|
"@types/slate-plain-serializer": "0.7.2",
|
2022-09-06 09:23:48 -05:00
|
|
|
"@types/slate-react": "0.22.9",
|
2022-07-27 10:02:48 -05:00
|
|
|
"@types/testing-library__jest-dom": "5.14.5",
|
2021-10-27 08:21:07 -05:00
|
|
|
"@types/testing-library__react-hooks": "^3.2.0",
|
2022-01-07 10:33:26 -06:00
|
|
|
"@types/tinycolor2": "1.4.3",
|
|
|
|
"@types/uuid": "8.3.4",
|
2022-05-20 07:07:07 -05:00
|
|
|
"@wojtekmaj/enzyme-adapter-react-17": "0.6.7",
|
2022-01-07 10:33:26 -06:00
|
|
|
"common-tags": "1.8.2",
|
2022-03-23 09:56:44 -05:00
|
|
|
"css-loader": "6.7.1",
|
2022-05-17 07:32:38 -05:00
|
|
|
"csstype": "3.1.0",
|
2021-10-08 09:19:10 -05:00
|
|
|
"enzyme": "3.11.0",
|
2022-09-09 04:56:49 -05:00
|
|
|
"esbuild": "0.15.7",
|
2022-05-19 07:25:29 -05:00
|
|
|
"expose-loader": "4.0.0",
|
2020-12-02 05:22:49 -06:00
|
|
|
"mock-raf": "1.0.1",
|
2022-01-24 04:50:34 -06:00
|
|
|
"process": "^0.11.10",
|
2022-08-03 08:47:09 -05:00
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2",
|
2022-01-07 10:33:26 -06:00
|
|
|
"react-test-renderer": "17.0.2",
|
|
|
|
"rimraf": "3.0.2",
|
2022-10-03 09:42:55 -05:00
|
|
|
"rollup": "2.79.1",
|
2022-08-03 08:47:09 -05:00
|
|
|
"rollup-plugin-dts": "^4.2.2",
|
2022-10-03 10:27:37 -05:00
|
|
|
"rollup-plugin-esbuild": "4.10.1",
|
2022-08-03 08:47:09 -05:00
|
|
|
"rollup-plugin-node-externals": "^4.1.0",
|
2022-04-14 09:49:56 -05:00
|
|
|
"rollup-plugin-svg-import": "^1.6.0",
|
2022-07-27 10:02:48 -05:00
|
|
|
"sass-loader": "13.0.2",
|
2022-10-03 02:23:47 -05:00
|
|
|
"storybook-addon-turbo-build": "1.1.0",
|
|
|
|
"storybook-dark-mode": "1.1.2",
|
2022-01-07 10:33:26 -06:00
|
|
|
"style-loader": "3.3.1",
|
2022-09-09 10:17:58 -05:00
|
|
|
"typescript": "4.8.2",
|
2022-10-03 02:23:47 -05:00
|
|
|
"webpack": "5.74.0"
|
2019-08-22 03:20:17 -05:00
|
|
|
},
|
2022-08-03 08:47:09 -05:00
|
|
|
"peerDependencies": {
|
|
|
|
"react": "^16.8.0 || ^17.0.0",
|
|
|
|
"react-dom": "^16.8.0 || ^17.0.0"
|
|
|
|
}
|
2018-12-20 02:25:04 -06:00
|
|
|
}
|