mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
1052dd97ae
Co-authored-by: Renovate Bot <bot@renovateapp.com>
418 lines
16 KiB
JSON
418 lines
16 KiB
JSON
{
|
|
"author": "Grafana Labs",
|
|
"license": "AGPL-3.0-only",
|
|
"private": true,
|
|
"name": "grafana",
|
|
"version": "9.0.0-pre",
|
|
"repository": "github:grafana/grafana",
|
|
"scripts": {
|
|
"api-tests": "jest --notify --watch --config=devenv/e2e-api-tests/jest.js",
|
|
"build": "yarn i18n:compile && NODE_ENV=production webpack --config scripts/webpack/webpack.prod.js",
|
|
"build:nominify": "yarn run build --env noMinify=1",
|
|
"dev": "yarn i18n:compile && webpack --progress --color --config scripts/webpack/webpack.dev.js",
|
|
"e2e": "./e2e/start-and-run-suite",
|
|
"e2e:debug": "./e2e/start-and-run-suite debug",
|
|
"e2e:dev": "./e2e/start-and-run-suite dev",
|
|
"e2e:benchmark:live": "./e2e/start-and-run-suite benchmark live",
|
|
"test": "jest --notify --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"test:coverage:changes": "jest --coverage --changedSince=origin/main",
|
|
"test:accessibility-report": "./scripts/generate-a11y-report.sh",
|
|
"lint": "yarn run lint:ts && yarn run lint:sass",
|
|
"lint:ts": "eslint . --ext .js,.tsx,.ts --cache",
|
|
"lint:sass": "yarn stylelint '{public/sass,packages}/**/*.scss' --cache",
|
|
"test:ci": "betterer ci && mkdir -p reports/junit && JEST_JUNIT_OUTPUT_DIR=reports/junit jest --ci --reporters=default --reporters=jest-junit -w ${TEST_MAX_WORKERS:-100%}",
|
|
"lint:fix": "yarn lint:ts --fix",
|
|
"packages:build": "lerna run clean && lerna run build --ignore @grafana-plugins/input-datasource",
|
|
"packages:docsExtract": "rm -rf ./reports/docs && lerna run docsExtract",
|
|
"packages:docsToMarkdown": "api-documenter markdown --input-folder ./reports/docs/ --output-folder ./docs/sources/packages_api/ --hugo",
|
|
"packages:prepare": "lerna version --no-push --no-git-tag-version --force-publish --exact",
|
|
"packages:publish": "lerna publish from-package --contents dist --no-verify-access",
|
|
"packages:publishCanary": "lerna publish from-package --contents dist --dist-tag canary --yes --no-verify-access",
|
|
"packages:publishLatest": "lerna publish from-package --contents dist --yes --no-verify-access",
|
|
"packages:publishNext": "lerna publish from-package --contents dist --dist-tag next --yes --no-verify-access",
|
|
"packages:publishTest": "lerna publish from-package --contents dist --dist-tag test --yes --no-verify-access",
|
|
"packages:publishDev": "lerna publish from-package --contents dist --dist-tag dev --yes --registry http://grafana-npm.local:4873 --force-publish=*",
|
|
"packages:typecheck": "lerna run typecheck",
|
|
"packages:clean": "lerna run clean",
|
|
"precommit": "yarn run lint-staged",
|
|
"prettier:check": "prettier --check --list-different=false --loglevel=warn \"**/*.{ts,tsx,scss,md,mdx}\"",
|
|
"prettier:checkDocs": "prettier --check --list-different=false --loglevel=warn \"docs/**/*.md\" \"*.md\" \"packages/**/*.{ts,tsx,scss,md,mdx}\"",
|
|
"prettier:write": "prettier --list-different \"**/*.{js,ts,tsx,scss,md,mdx}\" --write",
|
|
"start": "yarn themes:generate && yarn dev --watch",
|
|
"start:noTsCheck": "yarn start --env noTsCheck=1",
|
|
"start:hot": "yarn themes:generate && NODE_ENV=hot yarn dev --config scripts/webpack/webpack.hot.js",
|
|
"stats": "webpack --mode production --config scripts/webpack/webpack.prod.js --profile --json > compilation-stats.json",
|
|
"storybook": "yarn workspace @grafana/ui storybook --ci",
|
|
"storybook:build": "yarn workspace @grafana/ui storybook:build",
|
|
"themes:generate": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/generateSassVariableFiles.ts",
|
|
"typecheck": "tsc --noEmit && yarn run packages:typecheck",
|
|
"plugins:build-bundled": "grafana-toolkit plugin:bundle-managed",
|
|
"watch": "yarn start -d watch,start core:start --watchTheme",
|
|
"ci:test-frontend": "yarn run test:ci && yarn grafana-toolkit node-version-check",
|
|
"i18n:extract": "lingui extract",
|
|
"i18n:compile": "lingui compile",
|
|
"postinstall": "husky install",
|
|
"betterer": "betterer",
|
|
"betterer:stats": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/reportBettererStats.ts"
|
|
},
|
|
"grafana": {
|
|
"whatsNewUrl": "https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v8-5/",
|
|
"releaseNotesUrl": "https://grafana.com/docs/grafana/next/release-notes/"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,tsx}": [
|
|
"betterer precommit",
|
|
"eslint --ext .js,.tsx,.ts --cache --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{json,scss,md,mdx}": [
|
|
"prettier --write"
|
|
],
|
|
"*pkg/**/*.go": [
|
|
"gofmt -w -s"
|
|
],
|
|
"*.star": [
|
|
"make drone"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.18.2",
|
|
"@babel/plugin-proposal-class-properties": "7.17.12",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "7.17.12",
|
|
"@babel/plugin-proposal-object-rest-spread": "7.18.0",
|
|
"@babel/plugin-proposal-optional-chaining": "7.17.12",
|
|
"@babel/plugin-syntax-dynamic-import": "7.8.3",
|
|
"@babel/plugin-transform-react-constant-elements": "7.17.12",
|
|
"@babel/plugin-transform-runtime": "7.18.2",
|
|
"@babel/plugin-transform-typescript": "7.18.4",
|
|
"@babel/preset-env": "7.18.2",
|
|
"@babel/preset-react": "7.17.12",
|
|
"@babel/preset-typescript": "7.17.12",
|
|
"@betterer/betterer": "5.3.5",
|
|
"@betterer/cli": "5.3.5",
|
|
"@betterer/regexp": "5.3.5",
|
|
"@emotion/eslint-plugin": "11.7.0",
|
|
"@grafana/api-documenter": "7.11.2",
|
|
"@grafana/e2e": "workspace:*",
|
|
"@grafana/eslint-config": "3.0.0",
|
|
"@grafana/toolkit": "workspace:*",
|
|
"@grafana/tsconfig": "^1.2.0-rc1",
|
|
"@lingui/cli": "3.13.3",
|
|
"@lingui/macro": "3.13.3",
|
|
"@microsoft/api-extractor": "7.25.0",
|
|
"@pmmmwh/react-refresh-webpack-plugin": "0.5.6",
|
|
"@react-types/button": "3.5.0",
|
|
"@react-types/menu": "3.6.0",
|
|
"@react-types/overlays": "3.6.0",
|
|
"@react-types/shared": "3.13.0",
|
|
"@rtsao/plugin-proposal-class-properties": "7.0.1-patch.1",
|
|
"@swc/core": "1.2.187",
|
|
"@swc/helpers": "0.4.0",
|
|
"@testing-library/dom": "8.13.0",
|
|
"@testing-library/jest-dom": "5.16.4",
|
|
"@testing-library/react": "12.1.4",
|
|
"@testing-library/react-hooks": "8.0.0",
|
|
"@testing-library/user-event": "14.2.0",
|
|
"@types/angular": "1.8.4",
|
|
"@types/angular-route": "1.7.2",
|
|
"@types/classnames": "2.3.0",
|
|
"@types/common-tags": "^1.8.0",
|
|
"@types/d3": "7.4.0",
|
|
"@types/d3-force": "^2.1.0",
|
|
"@types/d3-scale-chromatic": "1.3.1",
|
|
"@types/debounce-promise": "3.1.4",
|
|
"@types/enzyme": "3.10.12",
|
|
"@types/enzyme-adapter-react-16": "1.0.6",
|
|
"@types/eslint": "8.4.2",
|
|
"@types/file-saver": "2.0.5",
|
|
"@types/google.analytics": "^0.0.42",
|
|
"@types/grafana__slate-react": "npm:@types/slate-react@0.22.5",
|
|
"@types/history": "4.7.11",
|
|
"@types/hoist-non-react-statics": "3.3.1",
|
|
"@types/jest": "28.1.1",
|
|
"@types/jquery": "3.5.14",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/jsurl": "^1.2.28",
|
|
"@types/lingui__macro": "^3",
|
|
"@types/lodash": "4.14.182",
|
|
"@types/logfmt": "^1.2.1",
|
|
"@types/mousetrap": "1.6.9",
|
|
"@types/node": "16.11.36",
|
|
"@types/papaparse": "5.3.2",
|
|
"@types/pluralize": "^0.0.29",
|
|
"@types/prismjs": "1.26.0",
|
|
"@types/rc-time-picker": "3.4.1",
|
|
"@types/react": "17.0.42",
|
|
"@types/react-beautiful-dnd": "13.1.2",
|
|
"@types/react-dom": "17.0.14",
|
|
"@types/react-grid-layout": "1.3.2",
|
|
"@types/react-highlight-words": "0.16.4",
|
|
"@types/react-loadable": "5.5.6",
|
|
"@types/react-redux": "7.1.24",
|
|
"@types/react-router-dom": "5.3.3",
|
|
"@types/react-table": "7.7.12",
|
|
"@types/react-test-renderer": "17.0.1",
|
|
"@types/react-transition-group": "4.4.4",
|
|
"@types/react-virtualized-auto-sizer": "1.0.1",
|
|
"@types/react-window": "1.8.5",
|
|
"@types/react-window-infinite-loader": "^1",
|
|
"@types/redux-mock-store": "1.0.3",
|
|
"@types/reselect": "2.2.0",
|
|
"@types/semver": "7.3.9",
|
|
"@types/slate": "0.47.2",
|
|
"@types/slate-plain-serializer": "0.7.2",
|
|
"@types/testing-library__jest-dom": "5.14.3",
|
|
"@types/testing-library__react-hooks": "^3.2.0",
|
|
"@types/tinycolor2": "1.4.3",
|
|
"@types/uuid": "8.3.4",
|
|
"@typescript-eslint/eslint-plugin": "5.25.0",
|
|
"@typescript-eslint/parser": "5.25.0",
|
|
"@wojtekmaj/enzyme-adapter-react-17": "0.6.7",
|
|
"autoprefixer": "10.4.7",
|
|
"axios": "0.27.2",
|
|
"babel-jest": "28.1.0",
|
|
"babel-loader": "8.2.5",
|
|
"babel-plugin-angularjs-annotate": "0.10.0",
|
|
"babel-plugin-macros": "3.1.0",
|
|
"copy-webpack-plugin": "9.0.1",
|
|
"css-loader": "6.7.1",
|
|
"css-minimizer-webpack-plugin": "4.0.0",
|
|
"cypress": "9.5.1",
|
|
"enzyme": "3.11.0",
|
|
"enzyme-to-json": "3.6.2",
|
|
"eslint": "8.17.0",
|
|
"eslint-config-prettier": "8.5.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-jest": "26.5.3",
|
|
"eslint-plugin-jsdoc": "39.3.0",
|
|
"eslint-plugin-lodash": "7.4.0",
|
|
"eslint-plugin-react": "7.29.4",
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
"eslint-webpack-plugin": "3.1.1",
|
|
"expose-loader": "4.0.0",
|
|
"file-loader": "6.2.0",
|
|
"fork-ts-checker-webpack-plugin": "7.2.11",
|
|
"fs-extra": "10.1.0",
|
|
"glob": "8.0.3",
|
|
"html-loader": "3.1.0",
|
|
"html-webpack-plugin": "5.5.0",
|
|
"http-server": "14.1.0",
|
|
"husky": "8.0.1",
|
|
"iconscout-unicons-tarball": "https://github.com/grafana/icons/tarball/63056cd833ba7ee4e94904492b3a8c0cabc38d28",
|
|
"jest": "28.1.0",
|
|
"jest-canvas-mock": "2.4.0",
|
|
"jest-date-mock": "1.0.8",
|
|
"jest-environment-jsdom": "28.1.0",
|
|
"jest-fail-on-console": "2.4.1",
|
|
"jest-junit": "13.2.0",
|
|
"jest-matcher-utils": "28.1.0",
|
|
"jest-mock-console": "1.2.3",
|
|
"lerna": "^4.0.0",
|
|
"lint-staged": "12.4.1",
|
|
"mini-css-extract-plugin": "2.6.0",
|
|
"mutationobserver-shim": "0.3.7",
|
|
"ngtemplate-loader": "2.1.0",
|
|
"node-notifier": "10.0.1",
|
|
"nodemon": "2.0.16",
|
|
"postcss": "8.4.14",
|
|
"postcss-loader": "7.0.0",
|
|
"postcss-reporter": "7.0.5",
|
|
"postcss-scss": "4.0.4",
|
|
"prettier": "2.6.2",
|
|
"raw-loader": "4.0.2",
|
|
"react-refresh": "0.14.0",
|
|
"react-select-event": "5.5.0",
|
|
"react-test-renderer": "17.0.2",
|
|
"redux-mock-store": "1.5.4",
|
|
"rimraf": "3.0.2",
|
|
"sass": "1.52.3",
|
|
"sass-loader": "13.0.0",
|
|
"sinon": "14.0.0",
|
|
"style-loader": "3.3.1",
|
|
"stylelint": "14.9.1",
|
|
"stylelint-config-prettier": "9.0.3",
|
|
"stylelint-config-sass-guidelines": "9.0.1",
|
|
"terser-webpack-plugin": "5.3.1",
|
|
"testing-library-selector": "0.2.1",
|
|
"ts-jest": "28.0.3",
|
|
"ts-loader": "9.2.6",
|
|
"ts-node": "10.8.1",
|
|
"typescript": "4.6.4",
|
|
"wait-on": "6.0.1",
|
|
"webpack": "5.73.0",
|
|
"webpack-bundle-analyzer": "4.5.0",
|
|
"webpack-cli": "4.10.0",
|
|
"webpack-dev-server": "4.9.0",
|
|
"webpack-merge": "5.8.0"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/css": "11.9.0",
|
|
"@emotion/react": "11.9.0",
|
|
"@grafana/aws-sdk": "0.0.36",
|
|
"@grafana/data": "workspace:*",
|
|
"@grafana/e2e-selectors": "workspace:*",
|
|
"@grafana/experimental": "^0.0.2-canary.30",
|
|
"@grafana/google-sdk": "0.0.3",
|
|
"@grafana/lezer-logql": "^0.0.12",
|
|
"@grafana/runtime": "workspace:*",
|
|
"@grafana/schema": "workspace:*",
|
|
"@grafana/slate-react": "0.22.10-grafana",
|
|
"@grafana/ui": "workspace:*",
|
|
"@jaegertracing/jaeger-ui-components": "workspace:*",
|
|
"@kusto/monaco-kusto": "5.1.3",
|
|
"@lezer/common": "0.15.12",
|
|
"@lezer/lr": "0.15.8",
|
|
"@lingui/core": "3.13.3",
|
|
"@lingui/react": "3.13.3",
|
|
"@opentelemetry/api": "1.1.0",
|
|
"@opentelemetry/exporter-collector": "0.25.0",
|
|
"@opentelemetry/semantic-conventions": "1.3.1",
|
|
"@popperjs/core": "2.11.5",
|
|
"@react-aria/button": "3.5.0",
|
|
"@react-aria/dialog": "3.2.0",
|
|
"@react-aria/focus": "3.6.0",
|
|
"@react-aria/interactions": "3.9.0",
|
|
"@react-aria/menu": "3.5.0",
|
|
"@react-aria/overlays": "3.9.0",
|
|
"@react-aria/utils": "3.13.0",
|
|
"@react-stately/collections": "3.4.0",
|
|
"@react-stately/menu": "3.3.0",
|
|
"@react-stately/tree": "3.3.0",
|
|
"@reduxjs/toolkit": "1.8.1",
|
|
"@sentry/browser": "6.19.7",
|
|
"@sentry/types": "6.19.7",
|
|
"@sentry/utils": "6.19.7",
|
|
"@types/react-resizable": "3.0.0",
|
|
"@visx/event": "2.6.0",
|
|
"@visx/gradient": "2.10.0",
|
|
"@visx/group": "2.10.0",
|
|
"@visx/scale": "2.2.2",
|
|
"@visx/shape": "2.10.0",
|
|
"@visx/tooltip": "2.10.0",
|
|
"@welldone-software/why-did-you-render": "7.0.1",
|
|
"angular": "1.8.3",
|
|
"angular-bindonce": "0.3.1",
|
|
"angular-route": "1.8.3",
|
|
"angular-sanitize": "1.8.3",
|
|
"app": "link:./public/app",
|
|
"baron": "3.0.3",
|
|
"brace": "0.11.1",
|
|
"calculate-size": "1.1.1",
|
|
"centrifuge": "2.8.5",
|
|
"classnames": "2.3.1",
|
|
"comlink": "4.3.1",
|
|
"common-tags": "1.8.2",
|
|
"core-js": "3.23.0",
|
|
"d3": "5.15.0",
|
|
"d3-force": "^2.1.1",
|
|
"d3-scale-chromatic": "1.5.0",
|
|
"dangerously-set-html-content": "1.0.9",
|
|
"date-fns": "2.28.0",
|
|
"debounce-promise": "3.1.2",
|
|
"emotion": "11.0.0",
|
|
"eventemitter3": "4.0.7",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"fast-json-patch": "3.1.1",
|
|
"file-saver": "2.0.5",
|
|
"history": "4.10.1",
|
|
"hoist-non-react-statics": "3.3.2",
|
|
"immer": "9.0.14",
|
|
"immutable": "4.1.0",
|
|
"jquery": "3.6.0",
|
|
"js-yaml": "^4.1.0",
|
|
"json-source-map": "0.6.1",
|
|
"jsurl": "^0.1.5",
|
|
"kbar": "0.1.0-beta.34",
|
|
"lezer-promql": "0.22.0",
|
|
"lodash": "4.17.21",
|
|
"logfmt": "^1.3.2",
|
|
"lru-cache": "7.10.1",
|
|
"memoize-one": "6.0.0",
|
|
"moment": "2.29.3",
|
|
"moment-timezone": "0.5.34",
|
|
"monaco-editor": "^0.31.1",
|
|
"monaco-promql": "1.7.4",
|
|
"mousetrap": "1.6.5",
|
|
"mousetrap-global-bind": "1.1.0",
|
|
"moveable": "0.30.0",
|
|
"ol": "6.14.1",
|
|
"papaparse": "5.3.2",
|
|
"pluralize": "^8.0.0",
|
|
"prismjs": "1.28.0",
|
|
"prop-types": "15.8.1",
|
|
"rc-cascader": "3.6.0",
|
|
"rc-drawer": "4.4.3",
|
|
"rc-slider": "9.7.5",
|
|
"rc-time-picker": "3.7.3",
|
|
"re-resizable": "6.9.9",
|
|
"react": "17.0.2",
|
|
"react-beautiful-dnd": "13.1.0",
|
|
"react-diff-viewer": "^3.1.1",
|
|
"react-dom": "17.0.2",
|
|
"react-draggable": "4.4.5",
|
|
"react-grid-layout": "1.3.4",
|
|
"react-highlight-words": "0.18.0",
|
|
"react-hook-form": "7.5.3",
|
|
"react-inlinesvg": "3.0.0",
|
|
"react-loadable": "5.5.0",
|
|
"react-moveable": "0.33.0",
|
|
"react-popper": "2.3.0",
|
|
"react-popper-tooltip": "4.4.1",
|
|
"react-redux": "7.2.6",
|
|
"react-resizable": "3.0.4",
|
|
"react-reverse-portal": "^2.0.1",
|
|
"react-router-dom": "^5.2.0",
|
|
"react-select": "5.3.2",
|
|
"react-split-pane": "0.1.92",
|
|
"react-table": "7.8.0",
|
|
"react-transition-group": "4.4.2",
|
|
"react-use": "17.4.0",
|
|
"react-virtualized-auto-sizer": "1.0.6",
|
|
"react-window": "1.8.7",
|
|
"react-window-infinite-loader": "^1.0.7",
|
|
"redux": "4.2.0",
|
|
"redux-thunk": "2.4.1",
|
|
"regenerator-runtime": "0.13.9",
|
|
"reselect": "4.1.5",
|
|
"rst2html": "github:thoward/rst2html#990cb89f2a300cdd9151790be377c4c0840df809",
|
|
"rxjs": "7.5.5",
|
|
"sass": "link:./public/sass",
|
|
"search-query-parser": "1.6.0",
|
|
"selecto": "1.16.2",
|
|
"semver": "7.3.7",
|
|
"slate": "0.47.8",
|
|
"slate-plain-serializer": "0.7.10",
|
|
"symbol-observable": "4.0.0",
|
|
"test": "link:./public/test",
|
|
"tether-drop": "https://github.com/torkelo/drop",
|
|
"tinycolor2": "1.4.2",
|
|
"tslib": "2.4.0",
|
|
"uplot": "1.6.21",
|
|
"uuid": "8.3.2",
|
|
"vendor": "link:./public/vendor",
|
|
"visjs-network": "4.25.0",
|
|
"whatwg-fetch": "3.6.2"
|
|
},
|
|
"resolutions": {
|
|
"underscore": "1.13.3",
|
|
"@types/slate": "0.47.2",
|
|
"@microsoft/api-extractor-model": "7.18.0",
|
|
"@rushstack/node-core-library": "3.45.5",
|
|
"@rushstack/rig-package": "0.3.11",
|
|
"@rushstack/ts-command-line": "4.11.0",
|
|
"@storybook/react/webpack": "5.73.0",
|
|
"node-fetch": "2.6.7"
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*",
|
|
"plugins-bundled/internal/*"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">= 16"
|
|
},
|
|
"packageManager": "yarn@3.2.1"
|
|
}
|