2013-07-20 14:56:59 -07:00
|
|
|
{
|
2019-07-24 02:17:41 +02:00
|
|
|
"author": "Grafana Labs",
|
2021-04-20 19:03:30 +02:00
|
|
|
"license": "AGPL-3.0-only",
|
2018-12-20 09:25:04 +01:00
|
|
|
"private": true,
|
2014-01-19 16:13:28 +01:00
|
|
|
"name": "grafana",
|
2023-07-27 09:21:29 +03:00
|
|
|
"version": "10.2.0-pre",
|
2020-02-27 12:00:36 -05:00
|
|
|
"repository": "github:grafana/grafana",
|
2020-03-25 07:19:57 +01:00
|
|
|
"scripts": {
|
2023-01-23 12:15:05 +01:00
|
|
|
"build": "yarn i18n:compile && NODE_ENV=production webpack --progress --config scripts/webpack/webpack.prod.js",
|
2021-11-18 16:38:58 +00:00
|
|
|
"build:nominify": "yarn run build --env noMinify=1",
|
2023-01-23 12:15:05 +01:00
|
|
|
"dev": "yarn i18n:compile && NODE_ENV=dev webpack --progress --color --config scripts/webpack/webpack.dev.js",
|
2020-03-25 07:19:57 +01:00
|
|
|
"e2e": "./e2e/start-and-run-suite",
|
2020-05-03 13:51:30 +02:00
|
|
|
"e2e:debug": "./e2e/start-and-run-suite debug",
|
2020-03-25 07:19:57 +01:00
|
|
|
"e2e:dev": "./e2e/start-and-run-suite dev",
|
2022-01-12 22:15:29 +04:00
|
|
|
"e2e:benchmark:live": "./e2e/start-and-run-suite benchmark live",
|
2023-01-26 18:04:13 -03: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",
|
2020-11-09 15:14:04 +01:00
|
|
|
"test": "jest --notify --watch",
|
2022-03-04 11:37:33 +01:00
|
|
|
"test:coverage": "jest --coverage",
|
|
|
|
|
"test:coverage:changes": "jest --coverage --changedSince=origin/main",
|
2021-09-14 13:23:17 +02:00
|
|
|
"test:accessibility-report": "./scripts/generate-a11y-report.sh",
|
2020-12-01 10:32:12 +01:00
|
|
|
"lint": "yarn run lint:ts && yarn run lint:sass",
|
|
|
|
|
"lint:ts": "eslint . --ext .js,.tsx,.ts --cache",
|
2021-10-20 11:34:24 +02:00
|
|
|
"lint:sass": "yarn stylelint '{public/sass,packages}/**/*.scss' --cache",
|
2022-07-22 15:50:00 +01:00
|
|
|
"test:ci": "yarn i18n:compile && 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 14:33:13 +01:00
|
|
|
"lint:fix": "yarn lint:ts --fix",
|
2022-08-03 15:47:09 +02:00
|
|
|
"packages:build": "lerna run build --ignore @grafana-plugins/input-datasource",
|
2023-01-26 17:18:05 +01:00
|
|
|
"packages:clean": "rimraf ./npm-artifacts && lerna run clean --parallel",
|
2020-03-25 07:19:57 +01:00
|
|
|
"packages:prepare": "lerna version --no-push --no-git-tag-version --force-publish --exact",
|
2023-01-27 14:06:43 +01:00
|
|
|
"packages:pack": "mkdir -p ./npm-artifacts && lerna exec --no-private -- yarn pack --out \"../../npm-artifacts/%s-%v.tgz\"",
|
2020-03-25 07:19:57 +01:00
|
|
|
"packages:typecheck": "lerna run typecheck",
|
2023-07-17 15:58:22 +01:00
|
|
|
"prettier:check": "prettier --check --list-different=false --log-level=warn \"**/*.{ts,tsx,scss,md,mdx}\"",
|
|
|
|
|
"prettier:checkDocs": "prettier --check --list-different=false --log-level=warn \"docs/**/*.md\" \"*.md\" \"packages/**/*.{ts,tsx,scss,md,mdx}\"",
|
2022-03-04 10:49:50 +01:00
|
|
|
"prettier:write": "prettier --list-different \"**/*.{js,ts,tsx,scss,md,mdx}\" --write",
|
2021-12-15 16:00:37 +00:00
|
|
|
"start": "yarn themes:generate && yarn dev --watch",
|
|
|
|
|
"start:noTsCheck": "yarn start --env noTsCheck=1",
|
2023-08-01 11:58:39 +02:00
|
|
|
"start:noLint": "yarn start --env noTsCheck=1 --env noLint=1",
|
2020-03-25 07:19:57 +01:00
|
|
|
"stats": "webpack --mode production --config scripts/webpack/webpack.prod.js --profile --json > compilation-stats.json",
|
2020-11-24 10:38:41 +01:00
|
|
|
"storybook": "yarn workspace @grafana/ui storybook --ci",
|
|
|
|
|
"storybook:build": "yarn workspace @grafana/ui storybook:build",
|
2023-06-22 13:25:27 +01:00
|
|
|
"themes:generate": "esbuild --target=es6 ./scripts/cli/generateSassVariableFiles.ts --bundle --platform=node --tsconfig=./scripts/cli/tsconfig.json | node",
|
2023-07-28 15:08:02 +01: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 10:32:12 +01:00
|
|
|
"typecheck": "tsc --noEmit && yarn run packages:typecheck",
|
2022-10-27 13:15:45 +02:00
|
|
|
"plugins:build-bundled": "find plugins-bundled -name package.json -not -path '*/node_modules/*' -execdir yarn build \\;",
|
2020-09-07 13:17:03 +02:00
|
|
|
"watch": "yarn start -d watch,start core:start --watchTheme",
|
2022-10-25 14:53:53 +02:00
|
|
|
"ci:test-frontend": "yarn run test:ci",
|
2022-10-12 12:51:16 +01:00
|
|
|
"i18n:clean": "rimraf public/locales/en-US/grafana.json",
|
2023-07-11 16:37:01 +01:00
|
|
|
"i18n:extract": "yarn run i18next -c public/locales/i18next-parser.config.js 'public/**/*.{tsx,ts}' 'packages/grafana-ui/**/*.{tsx,ts}'",
|
2022-10-06 16:34:04 +01:00
|
|
|
"i18n:compile": "echo 'no i18n compile yet, all good'",
|
2023-07-11 16:37:01 +01:00
|
|
|
"i18n:pseudo": "node ./public/locales/pseudo.js",
|
2022-06-27 10:12:56 +01:00
|
|
|
"betterer": "betterer",
|
2022-06-25 12:45:38 +01:00
|
|
|
"betterer:merge": "betterer merge",
|
2023-01-26 10:48:33 +00:00
|
|
|
"betterer:stats": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/reportBettererStats.ts",
|
|
|
|
|
"betterer:issues": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/generateBettererIssues.ts"
|
2020-03-25 07:19:57 +01:00
|
|
|
},
|
2020-04-28 21:26:36 +02:00
|
|
|
"grafana": {
|
2023-06-16 14:55:14 +03:00
|
|
|
"whatsNewUrl": "https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v10-0/",
|
2021-05-13 11:37:45 +02:00
|
|
|
"releaseNotesUrl": "https://grafana.com/docs/grafana/next/release-notes/"
|
2020-04-28 21:26:36 +02:00
|
|
|
},
|
2013-07-20 14:56:59 -07:00
|
|
|
"devDependencies": {
|
2023-07-31 13:52:26 +02:00
|
|
|
"@babel/core": "7.22.9",
|
2023-02-23 15:22:35 +01:00
|
|
|
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
|
2023-03-08 09:38:06 +00:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
|
2023-05-17 09:37:43 +01:00
|
|
|
"@babel/plugin-proposal-optional-chaining": "7.21.0",
|
2023-02-23 15:22:35 +01:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "7.8.3",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@babel/plugin-transform-react-constant-elements": "7.22.5",
|
|
|
|
|
"@babel/plugin-transform-runtime": "7.22.9",
|
|
|
|
|
"@babel/plugin-transform-typescript": "7.22.9",
|
|
|
|
|
"@babel/preset-env": "7.22.9",
|
|
|
|
|
"@babel/preset-react": "7.22.5",
|
2023-06-09 10:52:09 +03:00
|
|
|
"@babel/preset-typescript": "7.22.5",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@babel/runtime": "7.22.6",
|
2022-08-22 15:50:51 +01:00
|
|
|
"@betterer/betterer": "5.4.0",
|
2022-08-22 16:59:45 +01:00
|
|
|
"@betterer/cli": "5.4.0",
|
2022-08-24 09:29:17 +01:00
|
|
|
"@betterer/eslint": "5.4.0",
|
2022-08-24 11:04:51 +01:00
|
|
|
"@betterer/regexp": "5.4.0",
|
2023-07-13 15:32:15 +01:00
|
|
|
"@emotion/eslint-plugin": "11.11.0",
|
2021-10-08 15:19:10 +01:00
|
|
|
"@grafana/e2e": "workspace:*",
|
2023-07-13 14:53:25 +00:00
|
|
|
"@grafana/eslint-config": "6.0.0",
|
2023-01-18 15:02:35 +00:00
|
|
|
"@grafana/eslint-plugin": "link:./packages/grafana-eslint-rules",
|
2021-10-08 15:19:10 +01:00
|
|
|
"@grafana/toolkit": "workspace:*",
|
2023-06-15 14:17:31 +02:00
|
|
|
"@grafana/tsconfig": "^1.3.0-rc1",
|
2023-03-08 09:38:06 +00:00
|
|
|
"@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@react-types/button": "3.7.3",
|
|
|
|
|
"@react-types/menu": "3.9.2",
|
2023-07-11 08:46:03 +01:00
|
|
|
"@react-types/overlays": "3.8.0",
|
2023-06-07 18:11:29 +01:00
|
|
|
"@react-types/shared": "3.18.1",
|
2021-10-27 14:21:07 +01:00
|
|
|
"@rtsao/plugin-proposal-class-properties": "7.0.1-patch.1",
|
2023-07-31 13:35:48 +01:00
|
|
|
"@swc/core": "1.3.38",
|
2023-07-12 11:32:54 +01:00
|
|
|
"@swc/helpers": "0.4.14",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@testing-library/dom": "9.3.1",
|
2022-11-02 12:05:32 +00:00
|
|
|
"@testing-library/jest-dom": "5.16.5",
|
2023-04-11 10:51:54 +01:00
|
|
|
"@testing-library/react": "14.0.0",
|
2022-08-26 13:30:34 +01:00
|
|
|
"@testing-library/user-event": "14.4.3",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@types/angular": "1.8.5",
|
|
|
|
|
"@types/angular-route": "1.7.3",
|
2023-04-14 12:20:25 +01:00
|
|
|
"@types/chance": "^1.1.3",
|
2021-05-17 14:18:54 +02:00
|
|
|
"@types/common-tags": "^1.8.0",
|
2022-06-13 18:06:24 +00:00
|
|
|
"@types/d3": "7.4.0",
|
2023-01-27 11:19:35 +01:00
|
|
|
"@types/d3-force": "^3.0.0",
|
|
|
|
|
"@types/d3-scale-chromatic": "3.0.0",
|
2023-03-08 09:38:06 +00:00
|
|
|
"@types/debounce-promise": "3.1.6",
|
2023-07-11 13:02:55 +01:00
|
|
|
"@types/eslint": "8.44.0",
|
2022-02-07 13:08:10 +00:00
|
|
|
"@types/file-saver": "2.0.5",
|
2022-12-09 09:18:19 +01:00
|
|
|
"@types/glob": "^8.0.0",
|
2021-12-06 10:34:19 -05:00
|
|
|
"@types/google.analytics": "^0.0.42",
|
2022-11-02 12:05:32 +00:00
|
|
|
"@types/gtag.js": "^0.0.12",
|
2022-02-07 13:08:10 +00:00
|
|
|
"@types/history": "4.7.11",
|
2021-05-17 14:18:54 +02:00
|
|
|
"@types/hoist-non-react-statics": "3.3.1",
|
2022-11-24 14:00:41 +00:00
|
|
|
"@types/jest": "29.2.3",
|
2023-03-08 09:38:06 +00:00
|
|
|
"@types/jquery": "3.5.16",
|
2022-04-01 16:34:08 +02:00
|
|
|
"@types/js-yaml": "^4.0.5",
|
2021-05-18 13:42:57 +01:00
|
|
|
"@types/jsurl": "^1.2.28",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@types/lodash": "4.14.195",
|
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 14:49:02 +02:00
|
|
|
"@types/lucene": "^2",
|
2023-07-18 17:30:10 +03:00
|
|
|
"@types/marked": "5.0.1",
|
2023-03-08 09:38:06 +00:00
|
|
|
"@types/mousetrap": "1.6.11",
|
2023-06-08 08:28:18 -04:00
|
|
|
"@types/node": "18.16.16",
|
2023-07-14 16:04:35 +01:00
|
|
|
"@types/node-forge": "^1",
|
2023-06-08 13:26:38 +00:00
|
|
|
"@types/ol-ext": "npm:@siedlerchr/types-ol-ext@3.2.0",
|
2023-03-08 09:38:06 +00:00
|
|
|
"@types/papaparse": "5.3.7",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@types/pluralize": "^0.0.30",
|
2022-01-28 10:07:34 +01:00
|
|
|
"@types/prismjs": "1.26.0",
|
2023-07-14 12:11:26 +03:00
|
|
|
"@types/react": "18.2.15",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@types/react-beautiful-dnd": "13.1.4",
|
2023-07-14 12:11:26 +03:00
|
|
|
"@types/react-dom": "18.2.7",
|
2022-03-23 14:56:44 +00:00
|
|
|
"@types/react-grid-layout": "1.3.2",
|
2022-01-07 16:33:26 +00:00
|
|
|
"@types/react-highlight-words": "0.16.4",
|
2023-03-08 09:38:06 +00:00
|
|
|
"@types/react-redux": "7.1.25",
|
2022-02-07 13:08:10 +00:00
|
|
|
"@types/react-router-dom": "5.3.3",
|
2023-03-08 09:38:06 +00:00
|
|
|
"@types/react-table": "7.7.14",
|
2023-04-11 10:51:54 +01:00
|
|
|
"@types/react-test-renderer": "18.0.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@types/react-transition-group": "4.4.6",
|
2022-01-07 16:33:26 +00:00
|
|
|
"@types/react-virtualized-auto-sizer": "1.0.1",
|
|
|
|
|
"@types/react-window": "1.8.5",
|
2022-05-11 08:32:13 -07:00
|
|
|
"@types/react-window-infinite-loader": "^1",
|
2022-01-07 16:33:26 +00:00
|
|
|
"@types/redux-mock-store": "1.0.3",
|
2023-07-12 14:00:31 +00:00
|
|
|
"@types/semver": "7.5.0",
|
2022-11-02 12:05:32 +00:00
|
|
|
"@types/slate": "0.47.11",
|
2022-01-07 16:33:26 +00:00
|
|
|
"@types/slate-plain-serializer": "0.7.2",
|
2022-09-06 15:23:48 +01:00
|
|
|
"@types/slate-react": "0.22.9",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@types/testing-library__jest-dom": "5.14.8",
|
2022-01-07 16:33:26 +00:00
|
|
|
"@types/tinycolor2": "1.4.3",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@types/uuid": "9.0.2",
|
|
|
|
|
"@types/yargs": "17.0.24",
|
2022-11-03 07:00:00 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.42.0",
|
|
|
|
|
"@typescript-eslint/parser": "5.42.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"autoprefixer": "10.4.14",
|
2023-02-23 15:22:35 +01:00
|
|
|
"babel-jest": "29.3.1",
|
2023-07-31 13:52:26 +02:00
|
|
|
"babel-loader": "9.1.3",
|
2023-02-23 15:22:35 +01:00
|
|
|
"babel-plugin-angularjs-annotate": "0.10.0",
|
|
|
|
|
"babel-plugin-macros": "3.1.0",
|
2022-09-29 16:09:40 +02:00
|
|
|
"blob-polyfill": "7.0.20220408",
|
2023-01-23 12:15:05 +01:00
|
|
|
"browserslist": "^4.21.4",
|
2023-01-27 14:13:17 +00:00
|
|
|
"chance": "^1.0.10",
|
2023-01-26 10:48:33 +00:00
|
|
|
"codeowners": "^5.1.1",
|
2023-01-30 16:01:44 +00:00
|
|
|
"copy-webpack-plugin": "11.0.0",
|
2023-06-09 08:35:11 +01:00
|
|
|
"css-loader": "6.8.1",
|
2023-07-13 14:58:36 +00:00
|
|
|
"css-minimizer-webpack-plugin": "5.0.1",
|
2022-03-09 10:10:51 +01:00
|
|
|
"cypress": "9.5.1",
|
2023-07-31 13:52:26 +02:00
|
|
|
"esbuild": "0.18.12",
|
2023-06-01 10:23:09 +02:00
|
|
|
"esbuild-loader": "3.0.1",
|
2023-07-11 11:15:25 +01:00
|
|
|
"esbuild-plugin-browserslist": "^0.8.0",
|
2023-07-11 13:02:55 +01:00
|
|
|
"eslint": "8.44.0",
|
2023-07-11 13:30:02 +01:00
|
|
|
"eslint-config-prettier": "8.8.0",
|
2022-04-22 14:33:13 +01:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"eslint-plugin-jest": "27.2.3",
|
2023-07-13 14:59:56 +01:00
|
|
|
"eslint-plugin-jsdoc": "46.4.3",
|
2023-01-20 09:13:24 +01:00
|
|
|
"eslint-plugin-jsx-a11y": "6.7.1",
|
2022-02-21 02:10:23 -08:00
|
|
|
"eslint-plugin-lodash": "7.4.0",
|
2023-03-08 09:38:06 +00:00
|
|
|
"eslint-plugin-react": "7.32.2",
|
2022-06-16 09:04:18 +01:00
|
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"eslint-webpack-plugin": "4.0.1",
|
2023-07-11 13:48:07 +00:00
|
|
|
"expose-loader": "4.1.0",
|
2023-03-07 13:00:55 +00:00
|
|
|
"fork-ts-checker-webpack-plugin": "8.0.0",
|
2023-07-13 17:07:10 +03:00
|
|
|
"glob": "10.3.3",
|
2022-09-26 10:24:03 +01:00
|
|
|
"html-loader": "4.2.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"html-webpack-plugin": "5.5.3",
|
2022-07-27 16:02:48 +01:00
|
|
|
"http-server": "14.1.1",
|
2022-11-01 16:24:59 +00:00
|
|
|
"i18next-parser": "6.6.0",
|
2022-11-24 14:00:41 +00:00
|
|
|
"jest": "29.3.1",
|
2023-07-11 15:37:52 +00:00
|
|
|
"jest-canvas-mock": "2.5.2",
|
2020-06-15 13:06:37 +02:00
|
|
|
"jest-date-mock": "1.0.8",
|
2022-11-24 14:00:41 +00:00
|
|
|
"jest-environment-jsdom": "29.3.1",
|
2023-07-12 07:51:20 +00:00
|
|
|
"jest-fail-on-console": "3.1.1",
|
2023-07-13 15:12:48 +01:00
|
|
|
"jest-junit": "16.0.0",
|
2022-11-24 14:00:41 +00:00
|
|
|
"jest-matcher-utils": "29.3.1",
|
2022-10-03 12:45:11 +02:00
|
|
|
"lerna": "5.5.4",
|
2023-07-31 13:52:26 +02:00
|
|
|
"mini-css-extract-plugin": "2.7.6",
|
2023-07-12 08:49:00 +00:00
|
|
|
"msw": "1.2.2",
|
2022-01-07 16:33:26 +00:00
|
|
|
"mutationobserver-shim": "0.3.7",
|
2021-08-31 12:55:05 +02:00
|
|
|
"ngtemplate-loader": "2.1.0",
|
2022-02-07 13:08:10 +00:00
|
|
|
"node-notifier": "10.0.1",
|
2023-07-31 13:52:26 +02:00
|
|
|
"postcss": "8.4.26",
|
2023-07-12 09:53:32 +00:00
|
|
|
"postcss-loader": "7.3.3",
|
2022-01-07 16:33:26 +00:00
|
|
|
"postcss-reporter": "7.0.5",
|
2023-03-08 09:38:06 +00:00
|
|
|
"postcss-scss": "4.0.6",
|
2023-07-17 15:58:22 +01:00
|
|
|
"prettier": "3.0.0",
|
2022-06-16 09:04:18 +01:00
|
|
|
"react-refresh": "0.14.0",
|
2022-11-02 12:05:32 +00:00
|
|
|
"react-select-event": "5.5.1",
|
2022-09-02 13:24:55 -05:00
|
|
|
"react-simple-compat": "1.2.3",
|
2023-04-11 10:51:54 +01:00
|
|
|
"react-test-renderer": "18.2.0",
|
2020-04-10 01:53:33 +02:00
|
|
|
"redux-mock-store": "1.5.4",
|
2023-07-13 13:37:16 +03:00
|
|
|
"rimraf": "5.0.1",
|
2023-07-13 16:27:52 +01:00
|
|
|
"rudder-sdk-js": "2.37.0",
|
2023-07-12 13:49:58 +00:00
|
|
|
"sass": "1.63.6",
|
2023-07-12 14:26:07 +00:00
|
|
|
"sass-loader": "13.3.2",
|
2023-07-12 16:20:46 +03:00
|
|
|
"sinon": "15.2.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"style-loader": "3.3.3",
|
2023-07-10 09:12:14 +01:00
|
|
|
"stylelint": "15.10.1",
|
2023-03-08 09:38:06 +00:00
|
|
|
"stylelint-config-prettier": "9.0.5",
|
2023-07-19 16:05:06 +01:00
|
|
|
"stylelint-config-sass-guidelines": "10.0.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"terser-webpack-plugin": "5.3.9",
|
2022-01-06 13:55:47 +00:00
|
|
|
"testing-library-selector": "0.2.1",
|
2023-07-12 13:37:26 +03:00
|
|
|
"ts-jest": "29.1.1",
|
2023-02-23 15:22:35 +01:00
|
|
|
"ts-loader": "9.3.1",
|
2022-07-26 13:55:55 +01:00
|
|
|
"ts-node": "10.9.1",
|
2022-12-27 06:30:52 -08:00
|
|
|
"typescript": "4.8.4",
|
2023-03-03 17:01:39 +00:00
|
|
|
"wait-on": "7.0.1",
|
2023-07-13 12:12:19 +00:00
|
|
|
"webpack": "5.88.1",
|
2023-07-13 13:46:12 +01:00
|
|
|
"webpack-bundle-analyzer": "4.9.0",
|
2023-07-13 15:28:41 +03:00
|
|
|
"webpack-cli": "5.1.4",
|
2023-07-13 13:44:38 +03:00
|
|
|
"webpack-dev-server": "4.15.1",
|
2022-08-30 11:18:55 +02:00
|
|
|
"webpack-manifest-plugin": "5.0.0",
|
2023-07-13 10:48:35 +00:00
|
|
|
"webpack-merge": "5.9.0",
|
2023-01-26 10:48:33 +00:00
|
|
|
"yargs": "^17.5.1"
|
2013-07-20 14:56:59 -07:00
|
|
|
},
|
2014-05-30 22:46:39 -07:00
|
|
|
"dependencies": {
|
2023-06-06 09:19:54 +01:00
|
|
|
"@daybrush/utils": "1.13.0",
|
2023-07-13 15:32:15 +01:00
|
|
|
"@emotion/css": "11.11.2",
|
|
|
|
|
"@emotion/react": "11.11.1",
|
2023-04-24 17:46:31 +03:00
|
|
|
"@glideapps/glide-data-grid": "^5.2.1",
|
2023-08-14 13:42:30 -04:00
|
|
|
"@grafana/aws-sdk": "0.1.1",
|
2021-10-08 15:19:10 +01:00
|
|
|
"@grafana/data": "workspace:*",
|
|
|
|
|
"@grafana/e2e-selectors": "workspace:*",
|
2023-07-24 15:47:55 +02:00
|
|
|
"@grafana/experimental": "1.6.1",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@grafana/faro-core": "1.1.2",
|
|
|
|
|
"@grafana/faro-web-sdk": "1.1.2",
|
2023-03-29 12:16:28 +02:00
|
|
|
"@grafana/google-sdk": "0.1.1",
|
2023-07-21 13:03:56 +01:00
|
|
|
"@grafana/lezer-logql": "0.1.8",
|
2023-08-01 14:15:05 +01:00
|
|
|
"@grafana/lezer-traceql": "0.0.4",
|
2023-03-08 09:38:06 +00:00
|
|
|
"@grafana/monaco-logql": "^0.0.7",
|
2021-10-08 15:19:10 +01:00
|
|
|
"@grafana/runtime": "workspace:*",
|
2023-08-17 16:03:26 +02:00
|
|
|
"@grafana/scenes": "0.24.0",
|
2021-10-08 15:19:10 +01:00
|
|
|
"@grafana/schema": "workspace:*",
|
|
|
|
|
"@grafana/ui": "workspace:*",
|
2023-06-07 11:49:43 +01:00
|
|
|
"@kusto/monaco-kusto": "^7.4.0",
|
2023-06-29 14:59:02 -05:00
|
|
|
"@leeoniya/ufuzzy": "1.0.8",
|
2023-03-08 09:38:06 +00:00
|
|
|
"@lezer/common": "1.0.2",
|
|
|
|
|
"@lezer/highlight": "1.1.3",
|
|
|
|
|
"@lezer/lr": "1.3.3",
|
2023-06-21 14:49:22 +02:00
|
|
|
"@locker/near-membrane-dom": "^0.12.15",
|
|
|
|
|
"@locker/near-membrane-shared": "^0.12.15",
|
|
|
|
|
"@locker/near-membrane-shared-dom": "^0.12.15",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@opentelemetry/api": "1.4.1",
|
2021-12-07 09:58:43 +01:00
|
|
|
"@opentelemetry/exporter-collector": "0.25.0",
|
2023-07-10 17:46:20 +01:00
|
|
|
"@opentelemetry/semantic-conventions": "1.15.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@popperjs/core": "2.11.8",
|
2022-08-22 08:45:29 -05:00
|
|
|
"@prometheus-io/lezer-promql": "^0.37.0-rc.1",
|
2023-07-10 06:36:34 +00:00
|
|
|
"@react-aria/button": "3.8.0",
|
|
|
|
|
"@react-aria/dialog": "3.5.3",
|
|
|
|
|
"@react-aria/focus": "3.13.0",
|
|
|
|
|
"@react-aria/interactions": "3.16.0",
|
|
|
|
|
"@react-aria/menu": "3.10.0",
|
|
|
|
|
"@react-aria/overlays": "3.15.0",
|
|
|
|
|
"@react-aria/utils": "3.18.0",
|
|
|
|
|
"@react-stately/collections": "3.9.0",
|
|
|
|
|
"@react-stately/menu": "3.5.3",
|
|
|
|
|
"@react-stately/tree": "3.7.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@reduxjs/toolkit": "1.9.5",
|
2023-04-27 07:18:38 +02:00
|
|
|
"@remix-run/router": "^1.5.0",
|
2023-04-11 10:51:54 +01:00
|
|
|
"@testing-library/react-hooks": "^8.0.1",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@types/react-resizable": "3.0.4",
|
2023-04-27 18:20:37 +02:00
|
|
|
"@types/trusted-types": "2.0.3",
|
2023-07-31 13:52:26 +02:00
|
|
|
"@types/webpack-env": "1.18.1",
|
2023-07-14 10:09:07 +00:00
|
|
|
"@visx/event": "3.3.0",
|
|
|
|
|
"@visx/gradient": "3.3.0",
|
|
|
|
|
"@visx/group": "3.3.0",
|
|
|
|
|
"@visx/scale": "3.3.0",
|
|
|
|
|
"@visx/shape": "3.3.0",
|
|
|
|
|
"@visx/tooltip": "3.3.0",
|
2022-05-19 11:34:34 +01:00
|
|
|
"@welldone-software/why-did-you-render": "7.0.1",
|
2022-05-20 13:07:07 +01:00
|
|
|
"angular": "1.8.3",
|
2018-06-26 01:28:37 -07:00
|
|
|
"angular-bindonce": "0.3.1",
|
2022-05-20 13:07:07 +01:00
|
|
|
"angular-route": "1.8.3",
|
|
|
|
|
"angular-sanitize": "1.8.3",
|
2022-09-19 10:51:46 +02:00
|
|
|
"ansicolor": "1.1.100",
|
2021-10-27 14:21:07 +01:00
|
|
|
"app": "link:./public/app",
|
2019-04-17 12:43:00 +02:00
|
|
|
"baron": "3.0.3",
|
2020-03-16 13:14:57 +01:00
|
|
|
"brace": "0.11.1",
|
2019-04-09 14:25:13 +02:00
|
|
|
"calculate-size": "1.1.1",
|
2023-07-14 10:18:01 +00:00
|
|
|
"centrifuge": "4.0.1",
|
2022-11-02 12:05:32 +00:00
|
|
|
"classnames": "2.3.2",
|
2023-01-27 14:13:17 +00:00
|
|
|
"combokeys": "^3.0.0",
|
2023-03-08 09:38:06 +00:00
|
|
|
"comlink": "4.4.1",
|
2022-01-07 16:33:26 +00:00
|
|
|
"common-tags": "1.8.2",
|
2023-07-31 13:52:26 +02:00
|
|
|
"core-js": "3.31.1",
|
2023-07-13 12:34:34 +00:00
|
|
|
"d3": "7.8.5",
|
2023-01-27 11:19:35 +01:00
|
|
|
"d3-force": "3.0.0",
|
2023-01-26 13:02:22 +01:00
|
|
|
"d3-scale-chromatic": "3.0.0",
|
2021-08-31 14:10:56 +02:00
|
|
|
"dangerously-set-html-content": "1.0.9",
|
2023-06-12 11:08:23 +00:00
|
|
|
"date-fns": "2.30.0",
|
2021-01-28 16:57:57 +02:00
|
|
|
"debounce-promise": "3.1.2",
|
2021-11-04 17:54:49 +00:00
|
|
|
"emotion": "11.0.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"eventemitter3": "5.0.1",
|
2021-08-17 13:03:18 +01:00
|
|
|
"fast-deep-equal": "^3.1.3",
|
2022-05-20 13:07:07 +01:00
|
|
|
"fast-json-patch": "3.1.1",
|
2022-01-07 16:33:26 +00:00
|
|
|
"file-saver": "2.0.5",
|
2022-09-02 13:24:55 -05:00
|
|
|
"framework-utils": "^1.1.0",
|
2021-04-01 10:32:00 +02:00
|
|
|
"history": "4.10.1",
|
2020-10-21 09:06:41 +02:00
|
|
|
"hoist-non-react-statics": "3.3.2",
|
2022-11-04 10:46:19 +00:00
|
|
|
"i18next": "^22.0.0",
|
2023-07-14 12:24:50 +02:00
|
|
|
"i18next-browser-languagedetector": "^7.0.2",
|
2023-07-13 18:52:59 +03:00
|
|
|
"immer": "10.0.2",
|
2023-07-31 13:52:26 +02:00
|
|
|
"immutable": "4.3.1",
|
2023-07-12 09:11:08 +01:00
|
|
|
"jquery": "3.7.0",
|
2022-04-01 16:34:08 +02:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-01-27 14:13:17 +00:00
|
|
|
"json-markup": "^1.1.0",
|
2021-03-25 11:51:09 +01:00
|
|
|
"json-source-map": "0.6.1",
|
2020-04-25 21:48:20 +01:00
|
|
|
"jsurl": "^0.1.5",
|
2023-03-08 09:38:06 +00:00
|
|
|
"kbar": "0.1.0-beta.40",
|
2021-03-02 10:13:27 +01:00
|
|
|
"lodash": "4.17.21",
|
2021-05-11 10:38:10 +02:00
|
|
|
"logfmt": "^1.3.2",
|
2023-07-14 10:26:58 +01:00
|
|
|
"lru-cache": "10.0.0",
|
2023-01-27 14:13:17 +00:00
|
|
|
"lru-memoize": "^1.1.0",
|
2023-07-28 14:49:02 +02:00
|
|
|
"lucene": "^2.1.1",
|
2023-07-18 17:30:10 +03:00
|
|
|
"marked": "5.1.1",
|
|
|
|
|
"marked-mangle": "1.1.0",
|
2021-11-08 14:52:05 +00:00
|
|
|
"memoize-one": "6.0.0",
|
2022-07-22 12:00:54 +02:00
|
|
|
"moment": "2.29.4",
|
2023-07-31 13:52:26 +02:00
|
|
|
"moment-timezone": "0.5.43",
|
2022-08-23 06:58:58 -07:00
|
|
|
"monaco-editor": "0.34.0",
|
2022-05-20 13:07:07 +01:00
|
|
|
"monaco-promql": "1.7.4",
|
2020-03-16 13:14:57 +01:00
|
|
|
"mousetrap": "1.6.5",
|
2019-04-17 12:43:00 +02:00
|
|
|
"mousetrap-global-bind": "1.1.0",
|
2023-01-31 15:40:44 +00:00
|
|
|
"moveable": "0.43.1",
|
2023-07-14 16:04:35 +01:00
|
|
|
"node-forge": "^1.3.1",
|
2023-07-13 10:55:42 +01:00
|
|
|
"ol": "7.4.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"ol-ext": "4.0.10",
|
2023-07-12 09:45:26 +00:00
|
|
|
"papaparse": "5.4.1",
|
2021-04-07 08:42:43 +03:00
|
|
|
"pluralize": "^8.0.0",
|
2022-09-09 15:18:20 +01:00
|
|
|
"prismjs": "1.29.0",
|
2022-01-07 16:33:26 +00:00
|
|
|
"prop-types": "15.8.1",
|
2022-10-06 16:34:04 +01:00
|
|
|
"pseudoizer": "^0.1.0",
|
2023-07-12 11:03:01 +01:00
|
|
|
"rc-cascader": "3.12.1",
|
2023-07-12 10:24:05 +00:00
|
|
|
"rc-drawer": "6.3.0",
|
2023-07-12 11:05:29 +01:00
|
|
|
"rc-slider": "10.2.1",
|
2021-10-27 14:21:07 +01:00
|
|
|
"rc-time-picker": "3.7.3",
|
2023-07-31 13:52:26 +02:00
|
|
|
"rc-tree": "5.7.9",
|
2022-05-20 13:07:07 +01:00
|
|
|
"re-resizable": "6.9.9",
|
2023-04-11 10:51:54 +01:00
|
|
|
"react": "18.2.0",
|
2023-01-30 13:29:47 +00:00
|
|
|
"react-awesome-query-builder": "5.4.0",
|
2022-11-02 12:05:32 +00:00
|
|
|
"react-beautiful-dnd": "13.1.1",
|
2021-03-25 11:51:09 +01:00
|
|
|
"react-diff-viewer": "^3.1.1",
|
2023-04-11 10:51:54 +01:00
|
|
|
"react-dom": "18.2.0",
|
2022-05-20 13:07:07 +01:00
|
|
|
"react-draggable": "4.4.5",
|
2023-02-09 15:16:17 +01:00
|
|
|
"react-dropzone": "^14.2.3",
|
2023-03-09 17:24:47 +01:00
|
|
|
"react-enable": "^3.1.0",
|
2022-03-23 14:56:44 +00:00
|
|
|
"react-grid-layout": "1.3.4",
|
2023-01-30 11:03:39 +00:00
|
|
|
"react-highlight-words": "0.20.0",
|
2022-02-23 12:22:45 +01:00
|
|
|
"react-hook-form": "7.5.3",
|
2022-11-04 14:45:20 +00:00
|
|
|
"react-i18next": "^12.0.0",
|
2023-03-08 09:38:06 +00:00
|
|
|
"react-inlinesvg": "3.0.2",
|
2023-06-01 12:06:28 +02:00
|
|
|
"react-loading-skeleton": "3.3.1",
|
2023-01-31 15:40:44 +00:00
|
|
|
"react-moveable": "0.46.1",
|
2022-05-18 11:05:27 +01:00
|
|
|
"react-popper": "2.3.0",
|
2022-07-27 16:02:48 +01:00
|
|
|
"react-popper-tooltip": "4.4.2",
|
2022-01-07 16:33:26 +00:00
|
|
|
"react-redux": "7.2.6",
|
2023-07-31 13:52:26 +02:00
|
|
|
"react-resizable": "3.0.5",
|
2023-04-24 17:46:31 +03:00
|
|
|
"react-responsive-carousel": "^3.2.23",
|
2023-04-11 10:51:54 +01:00
|
|
|
"react-router-dom": "5.3.3",
|
2023-04-27 07:18:38 +02:00
|
|
|
"react-router-dom-v5-compat": "^6.10.0",
|
2023-07-31 13:52:26 +02:00
|
|
|
"react-select": "5.7.4",
|
2022-01-07 16:33:26 +00:00
|
|
|
"react-split-pane": "0.1.92",
|
2022-05-18 11:51:04 +01:00
|
|
|
"react-table": "7.8.0",
|
2022-11-02 12:05:32 +00:00
|
|
|
"react-transition-group": "4.4.5",
|
2022-06-15 09:02:08 +00:00
|
|
|
"react-use": "17.4.0",
|
2023-02-15 08:26:16 +01:00
|
|
|
"react-virtual": "2.10.4",
|
2022-11-02 12:05:32 +00:00
|
|
|
"react-virtualized-auto-sizer": "1.0.7",
|
2023-07-31 13:52:26 +02:00
|
|
|
"react-window": "1.8.9",
|
|
|
|
|
"react-window-infinite-loader": "1.0.9",
|
2023-03-08 09:38:06 +00:00
|
|
|
"redux": "4.2.1",
|
|
|
|
|
"redux-thunk": "2.4.2",
|
|
|
|
|
"regenerator-runtime": "0.13.11",
|
2023-07-31 13:52:26 +02:00
|
|
|
"reselect": "4.1.8",
|
|
|
|
|
"rxjs": "7.8.1",
|
2021-10-27 14:21:07 +01:00
|
|
|
"sass": "link:./public/sass",
|
2023-07-13 18:13:19 +03:00
|
|
|
"selecto": "1.26.0",
|
2023-07-12 14:00:31 +00:00
|
|
|
"semver": "7.5.4",
|
2022-09-06 15:23:48 +01:00
|
|
|
"slate": "0.47.9",
|
2022-11-02 12:05:32 +00:00
|
|
|
"slate-plain-serializer": "0.7.13",
|
2022-09-06 15:23:48 +01:00
|
|
|
"slate-react": "0.22.10",
|
2022-07-12 14:11:54 +02:00
|
|
|
"sql-formatter-plus": "^1.3.6",
|
2021-11-12 16:13:55 +00:00
|
|
|
"symbol-observable": "4.0.0",
|
2021-10-27 14:21:07 +01:00
|
|
|
"test": "link:./public/test",
|
2021-03-12 12:28:54 +02:00
|
|
|
"tether-drop": "https://github.com/torkelo/drop",
|
2023-02-19 12:15:40 +00:00
|
|
|
"tinycolor2": "1.6.0",
|
2023-07-12 14:32:14 +00:00
|
|
|
"tslib": "2.6.0",
|
2023-01-27 14:13:17 +00:00
|
|
|
"tween-functions": "^1.2.0",
|
2023-01-27 02:12:19 -06:00
|
|
|
"uplot": "1.6.24",
|
2022-11-04 16:54:12 +00:00
|
|
|
"uuid": "9.0.0",
|
2021-10-27 14:21:07 +01:00
|
|
|
"vendor": "link:./public/vendor",
|
2020-11-09 15:31:03 +01:00
|
|
|
"visjs-network": "4.25.0",
|
2023-01-24 10:43:44 +01:00
|
|
|
"whatwg-fetch": "3.6.2",
|
|
|
|
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.1/xlsx-0.19.1.tgz"
|
2018-05-11 14:10:54 +02:00
|
|
|
},
|
|
|
|
|
"resolutions": {
|
2022-11-02 12:05:32 +00:00
|
|
|
"underscore": "1.13.6",
|
|
|
|
|
"@types/slate": "0.47.11",
|
2023-07-11 09:02:32 +01:00
|
|
|
"@rushstack/rig-package": "0.4.0",
|
2023-07-11 09:32:45 +01:00
|
|
|
"@rushstack/ts-command-line": "4.15.1",
|
2022-10-25 11:37:41 +02:00
|
|
|
"ngtemplate-loader/loader-utils": "^2.0.0",
|
2023-07-14 10:19:07 +00:00
|
|
|
"trim": "1.0.1",
|
2023-07-21 12:40:45 +02:00
|
|
|
"semver@~7.0.0": "7.5.4",
|
|
|
|
|
"semver@7.3.4": "7.5.4",
|
2023-04-11 10:51:54 +01: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-05-11 14:26:12 +02:00
|
|
|
"@storybook/blocks@7.0.10": "patch:@storybook/blocks@npm%3A7.0.10#./.yarn/patches/@storybook-blocks-npm-7.0.10-b101e8dcba.patch"
|
2018-12-20 09:25:04 +01:00
|
|
|
},
|
2018-12-25 09:59:23 +01:00
|
|
|
"workspaces": {
|
2018-12-25 08:55:44 +01:00
|
|
|
"packages": [
|
2020-04-07 00:04:24 -07:00
|
|
|
"packages/*",
|
|
|
|
|
"plugins-bundled/internal/*"
|
2018-12-25 08:55:44 +01:00
|
|
|
]
|
2019-05-08 16:50:21 +02:00
|
|
|
},
|
2019-07-05 10:46:25 +02:00
|
|
|
"engines": {
|
2023-01-26 10:19:39 +00:00
|
|
|
"node": ">= 18"
|
2020-03-17 22:08:32 +01:00
|
|
|
},
|
2023-07-31 13:52:26 +02:00
|
|
|
"packageManager": "yarn@3.6.1",
|
2023-07-17 15:58:22 +01:00
|
|
|
"dependenciesMeta": {
|
|
|
|
|
"prettier@3.0.0": {
|
|
|
|
|
"unplugged": true
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-05-29 13:23:07 +02:00
|
|
|
}
|