2013-07-20 16:56:59 -05:00
|
|
|
{
|
2019-07-23 19:17:41 -05:00
|
|
|
"author": "Grafana Labs",
|
2021-04-20 12:03:30 -05:00
|
|
|
"license": "AGPL-3.0-only",
|
2018-12-20 02:25:04 -06:00
|
|
|
"private": true,
|
2014-01-19 09:13:28 -06:00
|
|
|
"name": "grafana",
|
2024-03-25 14:44:28 -05:00
|
|
|
"version": "11.1.0-pre",
|
2020-02-27 11:00:36 -06:00
|
|
|
"repository": "github:grafana/grafana",
|
2020-03-25 01:19:57 -05:00
|
|
|
"scripts": {
|
2024-03-13 06:40:09 -05:00
|
|
|
"build": "NODE_ENV=production nx exec --verbose -- webpack --config scripts/webpack/webpack.prod.js",
|
|
|
|
"build:nominify": "yarn run build -- --env noMinify=1",
|
|
|
|
"dev": "NODE_ENV=dev nx exec -- webpack --config scripts/webpack/webpack.dev.js",
|
2020-03-25 01:19:57 -05:00
|
|
|
"e2e": "./e2e/start-and-run-suite",
|
2020-05-03 06:51:30 -05:00
|
|
|
"e2e:debug": "./e2e/start-and-run-suite debug",
|
2020-03-25 01:19:57 -05:00
|
|
|
"e2e:dev": "./e2e/start-and-run-suite dev",
|
2022-01-12 12:15:29 -06:00
|
|
|
"e2e:benchmark:live": "./e2e/start-and-run-suite benchmark live",
|
2023-01-26 15:04:13 -06:00
|
|
|
"e2e:enterprise": "./e2e/start-and-run-suite enterprise",
|
|
|
|
"e2e:enterprise:dev": "./e2e/start-and-run-suite enterprise dev",
|
|
|
|
"e2e:enterprise:debug": "./e2e/start-and-run-suite enterprise debug",
|
2024-02-23 05:39:30 -06:00
|
|
|
"e2e:playwright": "yarn playwright test",
|
|
|
|
"e2e:playwright:ui": "yarn playwright test --ui",
|
|
|
|
"e2e:playwright:report": "yarn playwright show-report",
|
2020-11-09 08:14:04 -06:00
|
|
|
"test": "jest --notify --watch",
|
2022-03-04 04:37:33 -06:00
|
|
|
"test:coverage": "jest --coverage",
|
|
|
|
"test:coverage:changes": "jest --coverage --changedSince=origin/main",
|
2021-09-14 06:23:17 -05:00
|
|
|
"test:accessibility-report": "./scripts/generate-a11y-report.sh",
|
2020-12-01 03:32:12 -06:00
|
|
|
"lint": "yarn run lint:ts && yarn run lint:sass",
|
|
|
|
"lint:ts": "eslint . --ext .js,.tsx,.ts --cache",
|
2021-10-20 04:34:24 -05:00
|
|
|
"lint:sass": "yarn stylelint '{public/sass,packages}/**/*.scss' --cache",
|
2024-01-24 11:24:24 -06:00
|
|
|
"test:ci": "mkdir -p reports/junit && JEST_JUNIT_OUTPUT_DIR=reports/junit jest --ci --reporters=default --reporters=jest-junit -w ${TEST_MAX_WORKERS:-100%}",
|
2022-04-22 08:33:13 -05:00
|
|
|
"lint:fix": "yarn lint:ts --fix",
|
2024-03-13 06:40:09 -05:00
|
|
|
"packages:build": "nx run-many -t build --projects='@grafana/*'",
|
2023-01-26 10:18:05 -06:00
|
|
|
"packages:clean": "rimraf ./npm-artifacts && lerna run clean --parallel",
|
2020-03-25 01:19:57 -05:00
|
|
|
"packages:prepare": "lerna version --no-push --no-git-tag-version --force-publish --exact",
|
2023-01-27 07:06:43 -06:00
|
|
|
"packages:pack": "mkdir -p ./npm-artifacts && lerna exec --no-private -- yarn pack --out \"../../npm-artifacts/%s-%v.tgz\"",
|
2024-03-13 06:40:09 -05:00
|
|
|
"packages:typecheck": "nx run-many -t typecheck --projects='@grafana/*'",
|
2024-02-09 05:16:40 -06:00
|
|
|
"prettier:check": "prettier --check --list-different=false --log-level=warn \"**/*.{ts,tsx,scss,md,mdx,json}\"",
|
|
|
|
"prettier:checkDocs": "prettier --check --list-different=false --log-level=warn \"docs/**/*.md\" \"*.md\" \"packages/**/*.{ts,tsx,scss,md,mdx,json}\"",
|
|
|
|
"prettier:write": "prettier --list-different \"**/*.{js,ts,tsx,scss,md,mdx,json}\" --write",
|
2024-03-13 06:40:09 -05:00
|
|
|
"start": "NODE_ENV=dev nx exec -- webpack --config scripts/webpack/webpack.dev.js --watch",
|
|
|
|
"start:noTsCheck": "yarn start -- --env noTsCheck=1",
|
|
|
|
"start:noLint": "yarn start -- --env noTsCheck=1 --env noLint=1",
|
2020-03-25 01:19:57 -05:00
|
|
|
"stats": "webpack --mode production --config scripts/webpack/webpack.prod.js --profile --json > compilation-stats.json",
|
2020-11-24 03:38:41 -06:00
|
|
|
"storybook": "yarn workspace @grafana/ui storybook --ci",
|
|
|
|
"storybook:build": "yarn workspace @grafana/ui storybook:build",
|
2024-03-13 06:40:09 -05:00
|
|
|
"themes-generate": "esbuild --target=es6 ./scripts/cli/generateSassVariableFiles.ts --bundle --platform=node --tsconfig=./scripts/cli/tsconfig.json | node",
|
2023-07-28 09:08:02 -05:00
|
|
|
"themes:usage": "eslint . --ext .tsx,.ts --ignore-pattern '*.test.ts*' --ignore-pattern '*.spec.ts*' --cache --rule '{ @grafana/theme-token-usage: \"error\" }'",
|
2020-12-01 03:32:12 -06:00
|
|
|
"typecheck": "tsc --noEmit && yarn run packages:typecheck",
|
2022-10-27 06:15:45 -05:00
|
|
|
"plugins:build-bundled": "find plugins-bundled -name package.json -not -path '*/node_modules/*' -execdir yarn build \\;",
|
2020-09-07 06:17:03 -05:00
|
|
|
"watch": "yarn start -d watch,start core:start --watchTheme",
|
2022-10-25 07:53:53 -05:00
|
|
|
"ci:test-frontend": "yarn run test:ci",
|
2022-10-12 06:51:16 -05:00
|
|
|
"i18n:clean": "rimraf public/locales/en-US/grafana.json",
|
2023-10-02 06:58:43 -05:00
|
|
|
"i18n:extract": "yarn run i18next -c public/locales/i18next-parser.config.js 'public/**/*.{tsx,ts}' 'packages/grafana-ui/**/*.{tsx,ts}' && yarn i18n:pseudo",
|
2023-07-11 10:37:01 -05:00
|
|
|
"i18n:pseudo": "node ./public/locales/pseudo.js",
|
2023-10-11 04:26:39 -05:00
|
|
|
"i18n:stats": "node ./scripts/cli/reportI18nStats.mjs",
|
2022-06-27 04:12:56 -05:00
|
|
|
"betterer": "betterer",
|
2024-02-14 08:01:22 -06:00
|
|
|
"betterer:json": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/bettererResultsToJson.ts",
|
2022-06-25 06:45:38 -05:00
|
|
|
"betterer:merge": "betterer merge",
|
2023-01-26 04:48:33 -06:00
|
|
|
"betterer:stats": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/reportBettererStats.ts",
|
2023-10-13 07:11:41 -05:00
|
|
|
"betterer:issues": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/generateBettererIssues.ts",
|
2023-10-16 10:31:43 -05:00
|
|
|
"generate-icons-bundle-cache-file": "node ./scripts/generate-icon-bundle.js",
|
2024-03-13 06:40:09 -05:00
|
|
|
"plugin:build": "nx run-many -t build --projects='@grafana-plugins/*' --exclude \"@grafana-plugins/input-datasource\"",
|
|
|
|
"plugin:build:commit": "nx run-many -t build:commit --projects='@grafana-plugins/*' --exclude \"@grafana-plugins/input-datasource\"",
|
2024-03-20 10:03:40 -05:00
|
|
|
"plugin:build:dev": "nx run-many -t dev --projects='@grafana-plugins/*' --exclude \"@grafana-plugins/input-datasource\"",
|
|
|
|
"generate-icons": "yarn workspace @grafana/saga-icons generate"
|
2020-03-25 01:19:57 -05:00
|
|
|
},
|
2020-04-28 14:26:36 -05:00
|
|
|
"grafana": {
|
2024-03-05 10:09:42 -06:00
|
|
|
"whatsNewUrl": "https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v11-0/",
|
2021-05-13 04:37:45 -05:00
|
|
|
"releaseNotesUrl": "https://grafana.com/docs/grafana/next/release-notes/"
|
2020-04-28 14:26:36 -05:00
|
|
|
},
|
2013-07-20 16:56:59 -05:00
|
|
|
"devDependencies": {
|
2024-03-19 05:56:16 -05:00
|
|
|
"@babel/runtime": "7.24.1",
|
2022-08-22 09:50:51 -05:00
|
|
|
"@betterer/betterer": "5.4.0",
|
2022-08-22 10:59:45 -05:00
|
|
|
"@betterer/cli": "5.4.0",
|
2022-08-24 03:29:17 -05:00
|
|
|
"@betterer/eslint": "5.4.0",
|
2024-01-09 09:32:24 -06:00
|
|
|
"@cypress/webpack-preprocessor": "6.0.1",
|
2023-07-13 09:32:15 -05:00
|
|
|
"@emotion/eslint-plugin": "11.11.0",
|
2024-01-10 10:17:54 -06:00
|
|
|
"@grafana/eslint-config": "7.0.0",
|
2023-01-18 09:02:35 -06:00
|
|
|
"@grafana/eslint-plugin": "link:./packages/grafana-eslint-rules",
|
2024-03-27 05:26:52 -05:00
|
|
|
"@grafana/plugin-e2e": "^0.25.0",
|
2023-06-15 07:17:31 -05:00
|
|
|
"@grafana/tsconfig": "^1.3.0-rc1",
|
2024-03-13 06:40:09 -05:00
|
|
|
"@manypkg/get-packages": "^2.2.0",
|
2024-03-15 08:14:25 -05:00
|
|
|
"@playwright/test": "1.42.1",
|
2024-01-10 10:36:12 -06:00
|
|
|
"@pmmmwh/react-refresh-webpack-plugin": "0.5.11",
|
2024-02-19 05:12:24 -06:00
|
|
|
"@react-types/button": "3.9.2",
|
2024-02-19 06:18:04 -06:00
|
|
|
"@react-types/menu": "3.9.7",
|
2024-02-19 06:59:21 -06:00
|
|
|
"@react-types/overlays": "3.8.5",
|
2024-02-26 06:07:22 -06:00
|
|
|
"@react-types/shared": "3.22.1",
|
2021-10-27 08:21:07 -05:00
|
|
|
"@rtsao/plugin-proposal-class-properties": "7.0.1-patch.1",
|
2024-03-11 09:33:37 -05:00
|
|
|
"@swc/core": "1.4.2",
|
2024-03-28 07:34:29 -05:00
|
|
|
"@swc/helpers": "0.5.8",
|
2024-01-10 14:52:51 -06:00
|
|
|
"@testing-library/dom": "9.3.4",
|
2024-02-05 07:20:25 -06:00
|
|
|
"@testing-library/jest-dom": "6.4.2",
|
2024-03-20 07:10:48 -05:00
|
|
|
"@testing-library/react": "14.2.2",
|
2024-01-11 04:13:09 -06:00
|
|
|
"@testing-library/user-event": "14.5.2",
|
2024-01-11 05:08:06 -06:00
|
|
|
"@types/angular": "1.8.9",
|
2024-01-11 05:41:08 -06:00
|
|
|
"@types/angular-route": "1.7.6",
|
2023-04-14 06:20:25 -05:00
|
|
|
"@types/chance": "^1.1.3",
|
2021-05-17 07:18:54 -05:00
|
|
|
"@types/common-tags": "^1.8.0",
|
2024-01-09 10:23:27 -06:00
|
|
|
"@types/d3": "7.4.3",
|
2023-01-27 04:19:35 -06:00
|
|
|
"@types/d3-force": "^3.0.0",
|
2024-01-09 10:23:27 -06:00
|
|
|
"@types/d3-scale-chromatic": "3.0.3",
|
2024-01-11 10:13:19 -06:00
|
|
|
"@types/debounce-promise": "3.1.9",
|
2023-10-13 19:02:45 -05:00
|
|
|
"@types/diff": "^5",
|
2024-04-02 04:47:06 -05:00
|
|
|
"@types/eslint": "8.56.7",
|
2024-02-21 11:26:49 -06:00
|
|
|
"@types/eslint-scope": "^3.7.7",
|
2024-01-11 11:44:28 -06:00
|
|
|
"@types/file-saver": "2.0.7",
|
2022-12-09 02:18:19 -06:00
|
|
|
"@types/glob": "^8.0.0",
|
2024-01-30 17:32:33 -06:00
|
|
|
"@types/google.analytics": "^0.0.46",
|
2024-02-08 10:29:00 -06:00
|
|
|
"@types/gtag.js": "^0.0.19",
|
2022-02-07 07:08:10 -06:00
|
|
|
"@types/history": "4.7.11",
|
2024-01-12 03:44:01 -06:00
|
|
|
"@types/hoist-non-react-statics": "3.3.5",
|
2024-02-01 17:43:21 -06:00
|
|
|
"@types/jest": "29.5.12",
|
2024-01-15 07:17:53 -06:00
|
|
|
"@types/jquery": "3.5.29",
|
2022-04-01 09:34:08 -05:00
|
|
|
"@types/js-yaml": "^4.0.5",
|
2021-05-18 07:42:57 -05:00
|
|
|
"@types/jsurl": "^1.2.28",
|
2024-03-12 10:13:14 -05:00
|
|
|
"@types/lodash": "4.17.0",
|
Explore: Add transformations to correlation data links (#61799)
* bring in source from database
* bring in transformations from database
* add regex transformations to scopevar
* Consolidate types, add better example, cleanup
* Add var only if match
* Change ScopedVar to not require text, do not leak transformation-made variables between links
* Add mappings and start implementing logfmt
* Add mappings and start implementing logfmt
* Remove mappings, turn off global regex
* Add example yaml and omit transformations if empty
* Fix the yaml
* Add logfmt transformation
* Cleanup transformations and yaml
* add transformation field to FE types and use it, safeStringify logfmt values
* Add tests, only safe stringify if non-string, fix bug with safe stringify where it would return empty string with false value
* Add test for transformation field
* Do not add null transformations object
* Break out transformation logic, add tests to backend code
* Fix lint errors I understand 😅
* Fix the backend lint error
* Remove unnecessary code and mark new Transformations object as internal
* Add support for named capture groups
* Remove type assertion
* Remove variable name from transformation
* Add test for overriding regexes
* Add back variable name field, but change to mapValue
* fix go api test
* Change transformation types to enum, add better provisioning checks for bad type name and format
* Check for expression with regex transformations
2023-02-22 06:53:03 -06:00
|
|
|
"@types/logfmt": "^1.2.3",
|
2023-07-28 07:49:02 -05:00
|
|
|
"@types/lucene": "^2",
|
2024-01-12 06:13:00 -06:00
|
|
|
"@types/marked": "5.0.2",
|
2024-01-12 07:14:02 -06:00
|
|
|
"@types/mousetrap": "1.6.15",
|
2024-03-19 10:00:50 -05:00
|
|
|
"@types/node": "20.11.30",
|
2023-07-14 10:04:35 -05:00
|
|
|
"@types/node-forge": "^1",
|
2024-01-12 08:09:40 -06:00
|
|
|
"@types/ol-ext": "npm:@siedlerchr/types-ol-ext@3.2.4",
|
2024-01-12 09:15:01 -06:00
|
|
|
"@types/papaparse": "5.3.14",
|
2024-01-12 09:56:43 -06:00
|
|
|
"@types/pluralize": "^0.0.33",
|
2024-01-12 10:07:19 -06:00
|
|
|
"@types/prismjs": "1.26.3",
|
2024-03-27 11:53:23 -05:00
|
|
|
"@types/react": "18.2.73",
|
2024-01-12 10:07:45 -06:00
|
|
|
"@types/react-beautiful-dnd": "13.1.8",
|
2024-04-02 05:26:54 -05:00
|
|
|
"@types/react-dom": "18.2.23",
|
2024-01-15 15:51:36 -06:00
|
|
|
"@types/react-grid-layout": "1.3.5",
|
2024-01-12 11:31:53 -06:00
|
|
|
"@types/react-highlight-words": "0.16.7",
|
2024-01-29 08:27:35 -06:00
|
|
|
"@types/react-router": "5.1.20",
|
2022-02-07 07:08:10 -06:00
|
|
|
"@types/react-router-dom": "5.3.3",
|
2024-03-19 11:23:57 -05:00
|
|
|
"@types/react-table": "7.7.20",
|
2024-01-12 13:03:34 -06:00
|
|
|
"@types/react-test-renderer": "18.0.7",
|
2024-01-12 13:28:00 -06:00
|
|
|
"@types/react-transition-group": "4.4.10",
|
2024-01-17 06:13:14 -06:00
|
|
|
"@types/react-virtualized-auto-sizer": "1.0.4",
|
2024-01-16 04:27:58 -06:00
|
|
|
"@types/react-window": "1.8.8",
|
2022-05-11 10:32:13 -05:00
|
|
|
"@types/react-window-infinite-loader": "^1",
|
2024-01-12 14:26:50 -06:00
|
|
|
"@types/redux-mock-store": "1.0.6",
|
2024-02-26 16:58:09 -06:00
|
|
|
"@types/semver": "7.5.8",
|
2022-11-02 07:05:32 -05:00
|
|
|
"@types/slate": "0.47.11",
|
2024-01-15 04:02:01 -06:00
|
|
|
"@types/slate-plain-serializer": "0.7.5",
|
2022-09-06 09:23:48 -05:00
|
|
|
"@types/slate-react": "0.22.9",
|
2024-01-17 05:16:15 -06:00
|
|
|
"@types/systemjs": "6.13.5",
|
2024-01-14 15:57:40 -06:00
|
|
|
"@types/testing-library__jest-dom": "5.14.9",
|
2024-01-14 18:16:59 -06:00
|
|
|
"@types/tinycolor2": "1.4.6",
|
2024-01-26 05:38:01 -06:00
|
|
|
"@types/uuid": "9.0.8",
|
2023-12-05 01:34:22 -06:00
|
|
|
"@types/webpack-assets-manifest": "^5",
|
2024-01-15 02:00:19 -06:00
|
|
|
"@types/yargs": "17.0.32",
|
2024-02-06 12:28:48 -06:00
|
|
|
"@typescript-eslint/eslint-plugin": "6.21.0",
|
|
|
|
"@typescript-eslint/parser": "6.21.0",
|
2024-03-21 06:42:27 -05:00
|
|
|
"autoprefixer": "10.4.19",
|
2022-09-29 09:09:40 -05:00
|
|
|
"blob-polyfill": "7.0.20220408",
|
2023-01-23 05:15:05 -06:00
|
|
|
"browserslist": "^4.21.4",
|
2023-01-27 08:13:17 -06:00
|
|
|
"chance": "^1.0.10",
|
2023-10-11 06:03:14 -05:00
|
|
|
"chrome-remote-interface": "0.33.0",
|
2023-01-26 04:48:33 -06:00
|
|
|
"codeowners": "^5.1.1",
|
2024-01-31 03:28:06 -06:00
|
|
|
"copy-webpack-plugin": "12.0.2",
|
2024-03-19 11:49:53 -05:00
|
|
|
"core-js": "3.36.1",
|
2024-01-30 16:37:18 -06:00
|
|
|
"css-loader": "6.10.0",
|
2024-01-31 03:47:30 -06:00
|
|
|
"css-minimizer-webpack-plugin": "6.0.0",
|
2023-09-13 05:08:43 -05:00
|
|
|
"cypress": "13.1.0",
|
2023-09-08 10:51:59 -05:00
|
|
|
"cypress-file-upload": "5.0.8",
|
2024-03-13 09:39:30 -05:00
|
|
|
"esbuild": "0.20.1",
|
|
|
|
"esbuild-loader": "4.1.0",
|
2024-01-29 07:09:36 -06:00
|
|
|
"esbuild-plugin-browserslist": "^0.11.0",
|
2024-02-27 07:59:24 -06:00
|
|
|
"eslint": "8.57.0",
|
2024-02-07 04:20:19 -06:00
|
|
|
"eslint-config-prettier": "9.1.0",
|
2022-04-22 08:33:13 -05:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2024-03-14 03:56:05 -05:00
|
|
|
"eslint-plugin-jest": "27.9.0",
|
2024-03-28 05:06:12 -05:00
|
|
|
"eslint-plugin-jsdoc": "48.2.2",
|
2024-01-22 06:18:21 -06:00
|
|
|
"eslint-plugin-jsx-a11y": "6.8.0",
|
2022-02-21 04:10:23 -06:00
|
|
|
"eslint-plugin-lodash": "7.4.0",
|
2024-03-19 12:28:54 -05:00
|
|
|
"eslint-plugin-react": "7.34.1",
|
2022-06-16 03:04:18 -05:00
|
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
2024-02-21 11:26:49 -06:00
|
|
|
"eslint-scope": "^8.0.0",
|
2024-03-15 08:04:38 -05:00
|
|
|
"eslint-webpack-plugin": "4.1.0",
|
2024-02-07 04:43:33 -06:00
|
|
|
"expose-loader": "5.0.0",
|
2024-02-07 05:18:52 -06:00
|
|
|
"fork-ts-checker-webpack-plugin": "9.0.2",
|
2024-04-02 05:51:53 -05:00
|
|
|
"glob": "10.3.12",
|
2024-02-07 05:35:25 -06:00
|
|
|
"html-loader": "5.0.0",
|
2024-01-22 07:01:45 -06:00
|
|
|
"html-webpack-plugin": "5.6.0",
|
2022-07-27 10:02:48 -05:00
|
|
|
"http-server": "14.1.1",
|
2024-03-14 05:46:12 -05:00
|
|
|
"i18next-parser": "8.13.0",
|
2023-10-20 05:31:02 -05:00
|
|
|
"jest": "29.7.0",
|
2023-07-11 10:37:52 -05:00
|
|
|
"jest-canvas-mock": "2.5.2",
|
2024-03-27 08:03:20 -05:00
|
|
|
"jest-date-mock": "1.0.9",
|
2023-10-20 05:31:02 -05:00
|
|
|
"jest-environment-jsdom": "29.7.0",
|
2024-01-15 07:17:25 -06:00
|
|
|
"jest-fail-on-console": "3.1.2",
|
2023-07-13 09:12:48 -05:00
|
|
|
"jest-junit": "16.0.0",
|
2023-10-20 05:31:02 -05:00
|
|
|
"jest-matcher-utils": "29.7.0",
|
2024-03-21 06:54:03 -05:00
|
|
|
"jest-watch-typeahead": "^2.2.2",
|
2024-02-22 09:22:23 -06:00
|
|
|
"lerna": "8.1.2",
|
2024-03-11 07:27:09 -05:00
|
|
|
"mini-css-extract-plugin": "2.8.1",
|
2024-03-27 12:17:53 -05:00
|
|
|
"msw": "2.2.13",
|
2022-01-07 10:33:26 -06:00
|
|
|
"mutationobserver-shim": "0.3.7",
|
2021-08-31 05:55:05 -05:00
|
|
|
"ngtemplate-loader": "2.1.0",
|
2022-02-07 07:08:10 -06:00
|
|
|
"node-notifier": "10.0.1",
|
2024-03-28 03:36:35 -05:00
|
|
|
"nx": "18.1.3",
|
2024-03-21 07:25:08 -05:00
|
|
|
"postcss": "8.4.38",
|
2024-03-11 09:12:22 -05:00
|
|
|
"postcss-loader": "8.1.1",
|
2024-01-23 04:58:09 -06:00
|
|
|
"postcss-reporter": "7.1.0",
|
2024-01-15 11:22:13 -06:00
|
|
|
"postcss-scss": "4.0.9",
|
2024-02-05 08:10:14 -06:00
|
|
|
"prettier": "3.2.5",
|
2022-06-16 03:04:18 -05:00
|
|
|
"react-refresh": "0.14.0",
|
2022-11-02 07:05:32 -05:00
|
|
|
"react-select-event": "5.5.1",
|
2022-09-02 13:24:55 -05:00
|
|
|
"react-simple-compat": "1.2.3",
|
2023-04-11 04:51:54 -05:00
|
|
|
"react-test-renderer": "18.2.0",
|
2020-04-09 18:53:33 -05:00
|
|
|
"redux-mock-store": "1.5.4",
|
2024-01-17 03:06:38 -06:00
|
|
|
"rimraf": "5.0.5",
|
2024-03-26 03:03:27 -05:00
|
|
|
"rudder-sdk-js": "2.48.6",
|
2024-03-27 09:32:02 -05:00
|
|
|
"sass": "1.72.0",
|
2024-02-22 10:26:01 -06:00
|
|
|
"sass-loader": "14.1.1",
|
2024-01-17 04:23:53 -06:00
|
|
|
"style-loader": "3.3.4",
|
2024-03-27 10:38:44 -05:00
|
|
|
"stylelint": "16.3.1",
|
2024-03-28 04:52:23 -05:00
|
|
|
"stylelint-config-sass-guidelines": "11.1.0",
|
2024-01-17 05:42:37 -06:00
|
|
|
"terser-webpack-plugin": "5.3.10",
|
2023-10-10 04:37:36 -05:00
|
|
|
"testing-library-selector": "0.3.1",
|
2023-09-08 10:51:59 -05:00
|
|
|
"tracelib": "1.0.1",
|
2024-01-22 05:20:58 -06:00
|
|
|
"ts-jest": "29.1.2",
|
2024-01-17 06:02:16 -06:00
|
|
|
"ts-node": "10.9.2",
|
2024-01-24 09:33:54 -06:00
|
|
|
"typescript": "5.3.3",
|
2024-03-28 04:38:15 -05:00
|
|
|
"webpack": "5.91.0",
|
2024-03-13 06:40:09 -05:00
|
|
|
"webpack-assets-manifest": "^5.1.0",
|
2024-01-23 11:35:14 -06:00
|
|
|
"webpack-bundle-analyzer": "4.10.1",
|
2023-07-13 07:28:41 -05:00
|
|
|
"webpack-cli": "5.1.4",
|
2024-03-19 15:33:10 -05:00
|
|
|
"webpack-dev-server": "5.0.4",
|
2022-08-30 04:18:55 -05:00
|
|
|
"webpack-manifest-plugin": "5.0.0",
|
2023-10-20 04:32:55 -05:00
|
|
|
"webpack-merge": "5.10.0",
|
2024-03-13 06:40:09 -05:00
|
|
|
"webpackbar": "^6.0.0",
|
2023-09-08 10:51:59 -05:00
|
|
|
"yaml": "^2.0.0",
|
2023-01-26 04:48:33 -06:00
|
|
|
"yargs": "^17.5.1"
|
2013-07-20 16:56:59 -05:00
|
|
|
},
|
2014-05-31 00:46:39 -05:00
|
|
|
"dependencies": {
|
2023-06-06 03:19:54 -05:00
|
|
|
"@daybrush/utils": "1.13.0",
|
2023-07-13 09:32:15 -05:00
|
|
|
"@emotion/css": "11.11.2",
|
2024-03-08 07:38:12 -06:00
|
|
|
"@emotion/react": "11.11.4",
|
2023-08-28 03:49:23 -05:00
|
|
|
"@fingerprintjs/fingerprintjs": "^3.4.2",
|
2024-03-26 11:39:24 -05:00
|
|
|
"@floating-ui/react": "0.26.10",
|
2024-01-25 04:52:49 -06:00
|
|
|
"@glideapps/glide-data-grid": "^6.0.0",
|
2024-03-28 05:03:38 -05:00
|
|
|
"@grafana/aws-sdk": "0.3.3",
|
2021-10-08 09:19:10 -05:00
|
|
|
"@grafana/data": "workspace:*",
|
|
|
|
"@grafana/e2e-selectors": "workspace:*",
|
2024-02-08 07:35:53 -06:00
|
|
|
"@grafana/experimental": "1.7.10",
|
2024-01-18 04:38:30 -06:00
|
|
|
"@grafana/faro-core": "^1.3.6",
|
|
|
|
"@grafana/faro-web-sdk": "^1.3.6",
|
2023-09-12 05:28:48 -05:00
|
|
|
"@grafana/flamegraph": "workspace:*",
|
2024-01-10 05:12:01 -06:00
|
|
|
"@grafana/google-sdk": "0.1.2",
|
2024-02-13 08:56:59 -06:00
|
|
|
"@grafana/lezer-logql": "0.2.3",
|
2023-03-08 03:38:06 -06:00
|
|
|
"@grafana/monaco-logql": "^0.0.7",
|
2024-01-22 06:47:50 -06:00
|
|
|
"@grafana/o11y-ds-frontend": "workspace:*",
|
Prometheus: Create Prometheus library (#81641)
* Move to the library
* copy from library
* move them in src
* have additional files
* add unmigrated/dulicated code and files
* migrate from brendan's pr
module.ts, query_hints.ts, tracking.ts, and remove plugin.json
* migrate from brendan's pr
metric_find_query.test.ts
* migrate from brendan's pr
language_utils.test.ts
* migrate from brendan's pr
index.ts in root and in configuration
* migrate from brendan's pr
datasource.test.ts
* migrate from brendan's pr
typings folder
* migrate from brendan's pr
querycache folder
* migrate from brendan's pr
monaco-query-field folder
* migrate from brendan's pr
components folder without monaco-query-field folder
* migrate from brendan's pr
configuration/overhaul folder
* migrate from brendan's pr
AlertingSettingsOverhaul.tsx
* Remove azure related code
* migrate from brendan's pr
ConfigEditor.tsx, DataSourceHttpSettingsOverhaul.tsx, ExemplarSetting.tsx, configuration/mocks.ts, PromSettings.test.tsx, PromSettings.tsx
* migrate from brendan's pr
useFlag.ts
* migrate from brendan's pr
metrics-modal folder
* migrate from brendan's pr
files inside components folder
* migrate from brendan's pr
LabelFilters* files because they are now under components folder
* migrate from brendan's pr
files under querybuilder/shared folder
* migrate from brendan's pr
aggregations.ts, QueryPattern.tsx, QueryPatternsModal.tsx, state.ts, testUtils.ts under querybuilder folder
* Apply Ivana's PR https://github.com/grafana/grafana/pull/81656
* Apply jack's suggestions in this PR https://github.com/grafana/grafana/pull/77762
* Apply Ivana's PR https://github.com/grafana/grafana/pull/81656
* Fix type import
* add monaco-promql to transformIgnorePatterns to run prometheus frontend library tests
* remove Loki specific tests because we removed Loki code to decouple Loki
* add prometheus specific references
* We are moving these betterer issues from core Prometheus to the Library and we promise to remove all issues in the future, thank you
* include prometheus library in package.json
* add yarn lock with prometheus frontend library
* decouple final core import from metric_find_query.test.ts
* run prettier
* fix core imports in promqail
* fix lint errors
* run prettier
* add grafana-ui to devdeps to fix lint errors
* update yarn.lock
* grafana-ui fix
* trying to fix grafana-ui type errors with lerna drone check
* trying to fix grafana-ui type errors with lerna drone check
* trying to fix grafana-ui type errors with lerna drone check
* trying to fix grafana-ui type errors with lerna drone check
* try to pass typecheck
---------
Co-authored-by: Brendan O'Handley <brendan.ohandley@grafana.com>
2024-02-02 08:30:14 -06:00
|
|
|
"@grafana/prometheus": "workspace:*",
|
2021-10-08 09:19:10 -05:00
|
|
|
"@grafana/runtime": "workspace:*",
|
2024-03-20 10:03:40 -05:00
|
|
|
"@grafana/saga-icons": "workspace:*",
|
2024-04-02 09:15:53 -05:00
|
|
|
"@grafana/scenes": "4.1.2",
|
2021-10-08 09:19:10 -05:00
|
|
|
"@grafana/schema": "workspace:*",
|
2024-01-26 04:38:29 -06:00
|
|
|
"@grafana/sql": "workspace:*",
|
2021-10-08 09:19:10 -05:00
|
|
|
"@grafana/ui": "workspace:*",
|
2024-03-26 11:10:06 -05:00
|
|
|
"@kusto/monaco-kusto": "^10.0.0",
|
2024-01-10 05:29:52 -06:00
|
|
|
"@leeoniya/ufuzzy": "1.0.14",
|
2024-01-16 08:29:04 -06:00
|
|
|
"@lezer/common": "1.2.1",
|
2024-01-18 05:29:04 -06:00
|
|
|
"@lezer/highlight": "1.2.0",
|
2023-03-08 03:38:06 -06:00
|
|
|
"@lezer/lr": "1.3.3",
|
2024-02-06 09:47:29 -06:00
|
|
|
"@locker/near-membrane-dom": "0.13.6",
|
|
|
|
"@locker/near-membrane-shared": "0.13.6",
|
|
|
|
"@locker/near-membrane-shared-dom": "0.13.6",
|
2024-01-31 10:26:12 -06:00
|
|
|
"@msagl/core": "^1.1.16",
|
|
|
|
"@msagl/parser": "^1.1.16",
|
2024-01-23 11:56:04 -06:00
|
|
|
"@opentelemetry/api": "1.7.0",
|
2021-12-07 02:58:43 -06:00
|
|
|
"@opentelemetry/exporter-collector": "0.25.0",
|
2024-01-26 06:32:26 -06:00
|
|
|
"@opentelemetry/semantic-conventions": "1.21.0",
|
2023-07-31 06:52:26 -05:00
|
|
|
"@popperjs/core": "2.11.8",
|
2022-08-22 08:45:29 -05:00
|
|
|
"@prometheus-io/lezer-promql": "^0.37.0-rc.1",
|
2024-02-19 04:47:12 -06:00
|
|
|
"@react-aria/dialog": "3.5.12",
|
|
|
|
"@react-aria/focus": "3.16.2",
|
|
|
|
"@react-aria/overlays": "3.21.1",
|
|
|
|
"@react-aria/utils": "3.23.2",
|
2024-01-10 10:39:31 -06:00
|
|
|
"@react-awesome-query-builder/core": "6.4.2",
|
2024-01-10 11:04:03 -06:00
|
|
|
"@react-awesome-query-builder/ui": "6.4.2",
|
2023-07-31 06:52:26 -05:00
|
|
|
"@reduxjs/toolkit": "1.9.5",
|
2023-04-27 00:18:38 -05:00
|
|
|
"@remix-run/router": "^1.5.0",
|
2023-04-11 04:51:54 -05:00
|
|
|
"@testing-library/react-hooks": "^8.0.1",
|
2024-01-12 12:29:59 -06:00
|
|
|
"@types/react-resizable": "3.0.7",
|
2024-01-14 19:44:10 -06:00
|
|
|
"@types/trusted-types": "2.0.7",
|
2024-01-14 23:25:26 -06:00
|
|
|
"@types/webpack-env": "1.18.4",
|
2023-07-14 05:09:07 -05:00
|
|
|
"@visx/event": "3.3.0",
|
|
|
|
"@visx/gradient": "3.3.0",
|
|
|
|
"@visx/group": "3.3.0",
|
2024-01-24 10:18:02 -06:00
|
|
|
"@visx/scale": "3.5.0",
|
|
|
|
"@visx/shape": "3.5.0",
|
2023-07-14 05:09:07 -05:00
|
|
|
"@visx/tooltip": "3.3.0",
|
2024-01-29 09:50:52 -06:00
|
|
|
"@welldone-software/why-did-you-render": "8.0.1",
|
2022-05-20 07:07:07 -05:00
|
|
|
"angular": "1.8.3",
|
2018-06-26 03:28:37 -05:00
|
|
|
"angular-bindonce": "0.3.1",
|
2022-05-20 07:07:07 -05:00
|
|
|
"angular-route": "1.8.3",
|
|
|
|
"angular-sanitize": "1.8.3",
|
2024-02-15 03:30:11 -06:00
|
|
|
"ansicolor": "1.1.100",
|
2019-04-17 05:43:00 -05:00
|
|
|
"baron": "3.0.3",
|
2020-03-16 07:14:57 -05:00
|
|
|
"brace": "0.11.1",
|
2019-04-09 07:25:13 -05:00
|
|
|
"calculate-size": "1.1.1",
|
2024-03-11 06:02:10 -05:00
|
|
|
"centrifuge": "5.0.2",
|
2024-01-18 08:35:08 -06:00
|
|
|
"classnames": "2.5.1",
|
2023-01-27 08:13:17 -06:00
|
|
|
"combokeys": "^3.0.0",
|
2023-03-08 03:38:06 -06:00
|
|
|
"comlink": "4.4.1",
|
2022-01-07 10:33:26 -06:00
|
|
|
"common-tags": "1.8.2",
|
2024-03-13 10:42:18 -05:00
|
|
|
"d3": "7.9.0",
|
2023-01-27 04:19:35 -06:00
|
|
|
"d3-force": "3.0.0",
|
2024-03-13 10:42:18 -05:00
|
|
|
"d3-scale-chromatic": "3.1.0",
|
2024-02-01 12:50:22 -06:00
|
|
|
"dangerously-set-html-content": "1.1.0",
|
2024-03-27 06:51:19 -05:00
|
|
|
"date-fns": "3.6.0",
|
2021-01-28 08:57:57 -06:00
|
|
|
"debounce-promise": "3.1.2",
|
2023-10-13 19:02:45 -05:00
|
|
|
"diff": "^5.1.0",
|
2021-11-04 12:54:49 -05:00
|
|
|
"emotion": "11.0.0",
|
2023-07-31 06:52:26 -05:00
|
|
|
"eventemitter3": "5.0.1",
|
2021-08-17 07:03:18 -05:00
|
|
|
"fast-deep-equal": "^3.1.3",
|
2022-05-20 07:07:07 -05:00
|
|
|
"fast-json-patch": "3.1.1",
|
2022-01-07 10:33:26 -06:00
|
|
|
"file-saver": "2.0.5",
|
2022-09-02 13:24:55 -05:00
|
|
|
"framework-utils": "^1.1.0",
|
2021-04-01 03:32:00 -05:00
|
|
|
"history": "4.10.1",
|
2020-10-21 02:06:41 -05:00
|
|
|
"hoist-non-react-statics": "3.3.2",
|
2024-02-08 07:29:17 -06:00
|
|
|
"i18next": "^23.0.0",
|
2023-07-14 05:24:50 -05:00
|
|
|
"i18next-browser-languagedetector": "^7.0.2",
|
2024-03-11 06:30:30 -05:00
|
|
|
"immer": "10.0.4",
|
2024-01-26 06:11:18 -06:00
|
|
|
"immutable": "4.3.5",
|
2024-01-15 07:17:53 -06:00
|
|
|
"jquery": "3.7.1",
|
2022-04-01 09:34:08 -05:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-01-27 08:13:17 -06:00
|
|
|
"json-markup": "^1.1.0",
|
2021-03-25 05:51:09 -05:00
|
|
|
"json-source-map": "0.6.1",
|
2020-04-25 15:48:20 -05:00
|
|
|
"jsurl": "^0.1.5",
|
2024-01-15 08:24:50 -06:00
|
|
|
"kbar": "0.1.0-beta.45",
|
2023-12-20 07:14:57 -06:00
|
|
|
"leven": "^4.0.0",
|
2021-03-02 03:13:27 -06:00
|
|
|
"lodash": "4.17.21",
|
2021-05-11 03:38:10 -05:00
|
|
|
"logfmt": "^1.3.2",
|
2024-01-26 09:05:01 -06:00
|
|
|
"lru-cache": "10.2.0",
|
2023-01-27 08:13:17 -06:00
|
|
|
"lru-memoize": "^1.1.0",
|
2023-07-28 07:49:02 -05:00
|
|
|
"lucene": "^2.1.1",
|
2024-03-11 07:02:58 -05:00
|
|
|
"marked": "12.0.1",
|
2024-02-06 04:14:20 -06:00
|
|
|
"marked-mangle": "1.1.7",
|
2021-11-08 08:52:05 -06:00
|
|
|
"memoize-one": "6.0.0",
|
2023-11-24 08:49:16 -06:00
|
|
|
"ml-regression-polynomial": "^3.0.0",
|
|
|
|
"ml-regression-simple-linear": "^3.0.0",
|
2024-01-23 03:53:50 -06:00
|
|
|
"moment": "2.30.1",
|
2024-02-05 06:58:17 -06:00
|
|
|
"moment-timezone": "0.5.45",
|
2022-08-23 08:58:58 -05:00
|
|
|
"monaco-editor": "0.34.0",
|
2022-05-20 07:07:07 -05:00
|
|
|
"monaco-promql": "1.7.4",
|
2020-03-16 07:14:57 -05:00
|
|
|
"mousetrap": "1.6.5",
|
2019-04-17 05:43:00 -05:00
|
|
|
"mousetrap-global-bind": "1.1.0",
|
2024-01-17 14:00:41 -06:00
|
|
|
"moveable": "0.53.0",
|
2024-01-12 08:05:46 -06:00
|
|
|
"nanoid": "^5.0.4",
|
2023-07-14 10:04:35 -05:00
|
|
|
"node-forge": "^1.3.1",
|
2023-07-13 04:55:42 -05:00
|
|
|
"ol": "7.4.0",
|
2024-03-12 06:32:59 -05:00
|
|
|
"ol-ext": "4.0.17",
|
2023-07-12 04:45:26 -05:00
|
|
|
"papaparse": "5.4.1",
|
2021-04-07 00:42:43 -05:00
|
|
|
"pluralize": "^8.0.0",
|
2022-09-09 09:18:20 -05:00
|
|
|
"prismjs": "1.29.0",
|
2022-01-07 10:33:26 -06:00
|
|
|
"prop-types": "15.8.1",
|
2022-10-06 10:34:04 -05:00
|
|
|
"pseudoizer": "^0.1.0",
|
2024-03-14 10:39:28 -05:00
|
|
|
"rc-cascader": "3.24.0",
|
2024-02-22 09:48:37 -06:00
|
|
|
"rc-drawer": "7.1.0",
|
2024-01-23 06:20:22 -06:00
|
|
|
"rc-slider": "10.5.0",
|
2021-10-27 08:21:07 -05:00
|
|
|
"rc-time-picker": "3.7.3",
|
2024-01-30 05:34:05 -06:00
|
|
|
"rc-tree": "5.8.5",
|
2024-01-15 13:30:30 -06:00
|
|
|
"re-resizable": "6.9.11",
|
2023-04-11 04:51:54 -05:00
|
|
|
"react": "18.2.0",
|
2022-11-02 07:05:32 -05:00
|
|
|
"react-beautiful-dnd": "13.1.1",
|
2021-03-25 05:51:09 -05:00
|
|
|
"react-diff-viewer": "^3.1.1",
|
2023-04-11 04:51:54 -05:00
|
|
|
"react-dom": "18.2.0",
|
2024-01-15 15:17:59 -06:00
|
|
|
"react-draggable": "4.4.6",
|
2023-02-09 08:16:17 -06:00
|
|
|
"react-dropzone": "^14.2.3",
|
2024-01-15 15:51:36 -06:00
|
|
|
"react-grid-layout": "1.4.4",
|
2023-01-30 05:03:39 -06:00
|
|
|
"react-highlight-words": "0.20.0",
|
2024-01-05 04:41:49 -06:00
|
|
|
"react-hook-form": "^7.49.2",
|
2022-11-04 09:45:20 -05:00
|
|
|
"react-i18next": "^12.0.0",
|
2023-03-08 03:38:06 -06:00
|
|
|
"react-inlinesvg": "3.0.2",
|
2024-02-06 12:04:29 -06:00
|
|
|
"react-loading-skeleton": "3.4.0",
|
2024-01-17 14:00:41 -06:00
|
|
|
"react-moveable": "0.56.0",
|
2023-10-31 11:24:34 -05:00
|
|
|
"react-redux": "8.1.3",
|
2023-07-31 06:52:26 -05:00
|
|
|
"react-resizable": "3.0.5",
|
2023-04-24 09:46:31 -05:00
|
|
|
"react-responsive-carousel": "^3.2.23",
|
2024-01-29 08:27:35 -06:00
|
|
|
"react-router": "5.3.3",
|
2023-04-11 04:51:54 -05:00
|
|
|
"react-router-dom": "5.3.3",
|
2023-04-27 00:18:38 -05:00
|
|
|
"react-router-dom-v5-compat": "^6.10.0",
|
2024-01-23 07:48:07 -06:00
|
|
|
"react-select": "5.8.0",
|
2022-01-07 10:33:26 -06:00
|
|
|
"react-split-pane": "0.1.92",
|
2022-05-18 05:51:04 -05:00
|
|
|
"react-table": "7.8.0",
|
2022-11-02 07:05:32 -05:00
|
|
|
"react-transition-group": "4.4.5",
|
2024-01-23 07:23:30 -06:00
|
|
|
"react-use": "17.5.0",
|
2023-02-15 01:26:16 -06:00
|
|
|
"react-virtual": "2.10.4",
|
2024-03-11 09:35:15 -05:00
|
|
|
"react-virtualized-auto-sizer": "1.0.24",
|
2024-01-16 04:27:58 -06:00
|
|
|
"react-window": "1.8.10",
|
2023-07-31 06:52:26 -05:00
|
|
|
"react-window-infinite-loader": "1.0.9",
|
2024-01-02 13:52:21 -06:00
|
|
|
"react-zoom-pan-pinch": "^3.3.0",
|
2023-03-08 03:38:06 -06:00
|
|
|
"redux": "4.2.1",
|
|
|
|
"redux-thunk": "2.4.2",
|
2024-01-17 03:03:21 -06:00
|
|
|
"regenerator-runtime": "0.14.1",
|
2023-07-31 06:52:26 -05:00
|
|
|
"reselect": "4.1.8",
|
|
|
|
"rxjs": "7.8.1",
|
2024-01-17 04:07:35 -06:00
|
|
|
"selecto": "1.26.3",
|
2024-02-06 11:58:42 -06:00
|
|
|
"semver": "7.6.0",
|
2022-09-06 09:23:48 -05:00
|
|
|
"slate": "0.47.9",
|
2022-11-02 07:05:32 -05:00
|
|
|
"slate-plain-serializer": "0.7.13",
|
2022-09-06 09:23:48 -05:00
|
|
|
"slate-react": "0.22.10",
|
2021-11-12 10:13:55 -06:00
|
|
|
"symbol-observable": "4.0.0",
|
2024-03-21 03:22:35 -05:00
|
|
|
"systemjs": "6.14.3",
|
2024-03-21 06:39:58 -05:00
|
|
|
"systemjs-cjs-extra": "0.2.1",
|
2021-03-12 04:28:54 -06:00
|
|
|
"tether-drop": "https://github.com/torkelo/drop",
|
2023-02-19 06:15:40 -06:00
|
|
|
"tinycolor2": "1.6.0",
|
2024-01-17 07:05:43 -06:00
|
|
|
"tslib": "2.6.2",
|
2023-01-27 08:13:17 -06:00
|
|
|
"tween-functions": "^1.2.0",
|
2024-01-29 15:34:43 -06:00
|
|
|
"uplot": "1.6.30",
|
2024-01-17 07:44:22 -06:00
|
|
|
"uuid": "9.0.1",
|
2020-11-09 08:31:03 -06:00
|
|
|
"visjs-network": "4.25.0",
|
2024-01-17 08:05:07 -06:00
|
|
|
"whatwg-fetch": "3.6.20",
|
2023-01-24 03:43:44 -06:00
|
|
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.1/xlsx-0.19.1.tgz"
|
2018-05-11 07:10:54 -05:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2022-11-02 07:05:32 -05:00
|
|
|
"underscore": "1.13.6",
|
|
|
|
"@types/slate": "0.47.11",
|
2022-10-25 04:37:41 -05:00
|
|
|
"ngtemplate-loader/loader-utils": "^2.0.0",
|
2023-07-21 05:40:45 -05:00
|
|
|
"semver@~7.0.0": "7.5.4",
|
|
|
|
"semver@7.3.4": "7.5.4",
|
2024-02-06 04:03:26 -06:00
|
|
|
"debug@npm:^0.7.2": "2.6.9",
|
|
|
|
"debug@npm:^0.7.4": "2.6.9",
|
2023-04-11 04:51:54 -05:00
|
|
|
"slate-dev-environment@^0.2.2": "patch:slate-dev-environment@npm:0.2.5#.yarn/patches/slate-dev-environment-npm-0.2.5-9aeb7da7b5.patch",
|
|
|
|
"react-split-pane@0.1.92": "patch:react-split-pane@npm:0.1.92#.yarn/patches/react-split-pane-npm-0.1.92-93dbf51dff.patch",
|
2023-10-19 04:51:52 -05:00
|
|
|
"@storybook/blocks@7.4.5": "patch:@storybook/blocks@npm%3A7.4.5#./.yarn/patches/@storybook-blocks-npm-7.4.5-5a2374564a.patch",
|
|
|
|
"history@4.10.1": "patch:history@npm%3A4.10.1#./.yarn/patches/history-npm-4.10.1-ee217563ae.patch",
|
|
|
|
"history@^4.9.0": "patch:history@npm%3A4.10.1#./.yarn/patches/history-npm-4.10.1-ee217563ae.patch"
|
2018-12-20 02:25:04 -06:00
|
|
|
},
|
2018-12-25 02:59:23 -06:00
|
|
|
"workspaces": {
|
2018-12-25 01:55:44 -06:00
|
|
|
"packages": [
|
2020-04-07 02:04:24 -05:00
|
|
|
"packages/*",
|
2024-03-20 10:03:40 -05:00
|
|
|
"packages/!(grafana-icons)/**",
|
2023-10-16 10:31:43 -05:00
|
|
|
"plugins-bundled/internal/*",
|
|
|
|
"public/app/plugins/*/*"
|
2018-12-25 01:55:44 -06:00
|
|
|
]
|
2019-05-08 09:50:21 -05:00
|
|
|
},
|
2019-07-05 03:46:25 -05:00
|
|
|
"engines": {
|
2023-10-26 02:34:50 -05:00
|
|
|
"node": ">= 20"
|
2020-03-17 16:08:32 -05:00
|
|
|
},
|
2024-04-02 04:25:30 -05:00
|
|
|
"packageManager": "yarn@4.1.1",
|
2023-07-17 09:58:22 -05:00
|
|
|
"dependenciesMeta": {
|
2024-02-05 08:10:14 -06:00
|
|
|
"prettier@3.2.5": {
|
2023-07-17 09:58:22 -05:00
|
|
|
"unplugged": true
|
|
|
|
}
|
|
|
|
}
|
2018-05-29 06:23:07 -05:00
|
|
|
}
|