Revision 7b4b542144196f3ce312116e52cb16d5d63ac582 authored by bohandley on 18 April 2023, 21:42:08 UTC, committed by bohandley on 18 April 2023, 21:42:08 UTC
1 parent f612a72
Raw File
package.json
{
  "author": "Grafana Labs",
  "license": "AGPL-3.0-only",
  "private": true,
  "name": "grafana",
  "version": "10.0.0-pre",
  "repository": "github:grafana/grafana",
  "scripts": {
    "build": "yarn i18n:compile && NODE_ENV=production webpack --progress --config scripts/webpack/webpack.prod.js",
    "build:nominify": "yarn run build --env noMinify=1",
    "dev": "yarn i18n:compile && NODE_ENV=dev 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",
    "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",
    "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": "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%}",
    "lint:fix": "yarn lint:ts --fix",
    "packages:build": "lerna run build --ignore @grafana-plugins/input-datasource",
    "packages:clean": "rimraf ./npm-artifacts && lerna run clean --parallel",
    "packages:prepare": "lerna version --no-push --no-git-tag-version --force-publish --exact",
    "packages:pack": "mkdir -p ./npm-artifacts && lerna exec --no-private -- yarn pack --out \"../../npm-artifacts/%s-%v.tgz\"",
    "packages:typecheck": "lerna run typecheck",
    "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",
    "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": "esbuild ./scripts/cli/generateSassVariableFiles.ts --bundle --platform=node --tsconfig=./scripts/cli/tsconfig.json | node",
    "typecheck": "tsc --noEmit && yarn run packages:typecheck",
    "plugins:build-bundled": "find plugins-bundled -name package.json -not -path '*/node_modules/*' -execdir yarn build \\;",
    "watch": "yarn start -d watch,start core:start --watchTheme",
    "ci:test-frontend": "yarn run test:ci",
    "postinstall": "husky install",
    "i18n:clean": "rimraf public/locales/en-US/grafana.json",
    "i18n:extract": "yarn i18n:clean && yarn run i18next -c public/locales/i18next-parser.config.js 'public/**/*.{tsx,ts}' 'packages/grafana-ui/**/*.{tsx,ts}' && node ./public/locales/psuedo.js",
    "i18n:compile": "echo 'no i18n compile yet, all good'",
    "betterer": "betterer",
    "betterer:merge": "betterer merge",
    "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"
  },
  "grafana": {
    "whatsNewUrl": "https://grafana.com/docs/grafana/next/whatsnew/whats-new-in-v9-2/",
    "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"
    ],
    "*kinds/**/*.cue": [
      "make fix-cue"
    ],
    "*public/app/plugins/**/**/*.cue": [
      "make fix-cue"
    ]
  },
  "devDependencies": {
    "@babel/core": "7.20.5",
    "@babel/plugin-proposal-class-properties": "7.18.6",
    "@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
    "@babel/plugin-proposal-object-rest-spread": "7.20.7",
    "@babel/plugin-proposal-optional-chaining": "7.20.7",
    "@babel/plugin-syntax-dynamic-import": "7.8.3",
    "@babel/plugin-transform-react-constant-elements": "7.20.2",
    "@babel/plugin-transform-runtime": "7.19.6",
    "@babel/plugin-transform-typescript": "7.20.0",
    "@babel/preset-env": "7.20.2",
    "@babel/preset-react": "7.18.6",
    "@babel/preset-typescript": "7.18.6",
    "@babel/runtime": "7.20.1",
    "@betterer/betterer": "5.4.0",
    "@betterer/cli": "5.4.0",
    "@betterer/eslint": "5.4.0",
    "@betterer/regexp": "5.4.0",
    "@emotion/eslint-plugin": "11.10.0",
    "@grafana/e2e": "workspace:*",
    "@grafana/eslint-config": "5.1.0",
    "@grafana/eslint-plugin": "link:./packages/grafana-eslint-rules",
    "@grafana/toolkit": "workspace:*",
    "@grafana/tsconfig": "^1.2.0-rc1",
    "@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
    "@react-types/button": "3.7.1",
    "@react-types/menu": "3.7.2",
    "@react-types/overlays": "3.6.4",
    "@react-types/shared": "3.16.0",
    "@rtsao/plugin-proposal-class-properties": "7.0.1-patch.1",
    "@swc/core": "1.3.38",
    "@swc/helpers": "0.4.14",
    "@testing-library/dom": "9.0.1",
    "@testing-library/jest-dom": "5.16.5",
    "@testing-library/react": "14.0.0",
    "@testing-library/user-event": "14.4.3",
    "@types/angular": "1.8.4",
    "@types/angular-route": "1.7.2",
    "@types/chance": "^1.1.3",
    "@types/common-tags": "^1.8.0",
    "@types/d3": "7.4.0",
    "@types/d3-force": "^3.0.0",
    "@types/d3-scale-chromatic": "3.0.0",
    "@types/debounce-promise": "3.1.6",
    "@types/dompurify": "^2",
    "@types/eslint": "8.21.1",
    "@types/file-saver": "2.0.5",
    "@types/glob": "^8.0.0",
    "@types/google.analytics": "^0.0.42",
    "@types/gtag.js": "^0.0.12",
    "@types/history": "4.7.11",
    "@types/hoist-non-react-statics": "3.3.1",
    "@types/jest": "29.2.3",
    "@types/jquery": "3.5.16",
    "@types/js-yaml": "^4.0.5",
    "@types/jsurl": "^1.2.28",
    "@types/lodash": "4.14.191",
    "@types/logfmt": "^1.2.3",
    "@types/mousetrap": "1.6.11",
    "@types/node": "18.14.6",
    "@types/ol-ext": "npm:@siedlerchr/types-ol-ext@3.0.9",
    "@types/papaparse": "5.3.7",
    "@types/pluralize": "^0.0.29",
    "@types/prismjs": "1.26.0",
    "@types/react": "18.0.28",
    "@types/react-beautiful-dnd": "13.1.3",
    "@types/react-dom": "18.0.11",
    "@types/react-grid-layout": "1.3.2",
    "@types/react-highlight-words": "0.16.4",
    "@types/react-redux": "7.1.25",
    "@types/react-router-dom": "5.3.3",
    "@types/react-table": "7.7.14",
    "@types/react-test-renderer": "18.0.0",
    "@types/react-transition-group": "4.4.5",
    "@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/semver": "7.3.13",
    "@types/slate": "0.47.11",
    "@types/slate-plain-serializer": "0.7.2",
    "@types/slate-react": "0.22.9",
    "@types/testing-library__jest-dom": "5.14.5",
    "@types/tinycolor2": "1.4.3",
    "@types/uuid": "9.0.1",
    "@types/yargs": "17.0.22",
    "@typescript-eslint/eslint-plugin": "5.42.0",
    "@typescript-eslint/parser": "5.42.0",
    "autoprefixer": "10.4.13",
    "babel-jest": "29.3.1",
    "babel-loader": "9.1.2",
    "babel-plugin-angularjs-annotate": "0.10.0",
    "babel-plugin-macros": "3.1.0",
    "blob-polyfill": "7.0.20220408",
    "browserslist": "^4.21.4",
    "chance": "^1.0.10",
    "codeowners": "^5.1.1",
    "copy-webpack-plugin": "11.0.0",
    "css-loader": "6.7.3",
    "css-minimizer-webpack-plugin": "4.2.2",
    "cypress": "9.5.1",
    "esbuild": "0.16.17",
    "esbuild-loader": "2.21.0",
    "esbuild-plugin-browserslist": "^0.6.0",
    "eslint": "8.34.0",
    "eslint-config-prettier": "8.6.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-jest": "27.2.1",
    "eslint-plugin-jsdoc": "40.0.1",
    "eslint-plugin-jsx-a11y": "6.7.1",
    "eslint-plugin-lodash": "7.4.0",
    "eslint-plugin-react": "7.32.2",
    "eslint-plugin-react-hooks": "4.6.0",
    "eslint-webpack-plugin": "4.0.0",
    "expose-loader": "4.0.0",
    "fork-ts-checker-webpack-plugin": "8.0.0",
    "glob": "9.2.1",
    "html-loader": "4.2.0",
    "html-webpack-plugin": "5.5.0",
    "http-server": "14.1.1",
    "husky": "8.0.3",
    "i18next-parser": "6.6.0",
    "jest": "29.3.1",
    "jest-canvas-mock": "2.4.0",
    "jest-date-mock": "1.0.8",
    "jest-environment-jsdom": "29.3.1",
    "jest-fail-on-console": "3.0.2",
    "jest-junit": "15.0.0",
    "jest-matcher-utils": "29.3.1",
    "lerna": "5.5.4",
    "lint-staged": "13.1.2",
    "mini-css-extract-plugin": "2.7.2",
    "msw": "1.1.0",
    "mutationobserver-shim": "0.3.7",
    "ngtemplate-loader": "2.1.0",
    "node-notifier": "10.0.1",
    "postcss": "8.4.21",
    "postcss-loader": "7.0.2",
    "postcss-reporter": "7.0.5",
    "postcss-scss": "4.0.6",
    "prettier": "2.8.4",
    "react-refresh": "0.14.0",
    "react-select-event": "5.5.1",
    "react-simple-compat": "1.2.3",
    "react-test-renderer": "18.2.0",
    "redux-mock-store": "1.5.4",
    "rimraf": "4.4.0",
    "rudder-sdk-js": "2.25.0",
    "sass": "1.58.3",
    "sass-loader": "13.2.0",
    "sinon": "15.0.1",
    "style-loader": "3.3.1",
    "stylelint": "15.2.0",
    "stylelint-config-prettier": "9.0.5",
    "stylelint-config-sass-guidelines": "9.0.1",
    "terser-webpack-plugin": "5.3.6",
    "testing-library-selector": "0.2.1",
    "ts-jest": "29.0.5",
    "ts-loader": "9.3.1",
    "ts-node": "10.9.1",
    "typescript": "4.8.4",
    "wait-on": "7.0.1",
    "webpack": "5.76.0",
    "webpack-bundle-analyzer": "4.8.0",
    "webpack-cli": "5.0.1",
    "webpack-dev-server": "4.11.1",
    "webpack-manifest-plugin": "5.0.0",
    "webpack-merge": "5.8.0",
    "yargs": "^17.5.1"
  },
  "dependencies": {
    "@daybrush/utils": "1.10.2",
    "@emotion/css": "11.10.6",
    "@emotion/react": "11.10.6",
    "@grafana/aws-sdk": "0.0.44",
    "@grafana/data": "workspace:*",
    "@grafana/e2e-selectors": "workspace:*",
    "@grafana/experimental": "1.1.0",
    "@grafana/faro-core": "1.0.2",
    "@grafana/faro-web-sdk": "1.0.2",
    "@grafana/google-sdk": "0.1.1",
    "@grafana/lezer-logql": "0.1.3",
    "@grafana/monaco-logql": "^0.0.7",
    "@grafana/runtime": "workspace:*",
    "@grafana/scenes": "^0.3.0",
    "@grafana/schema": "workspace:*",
    "@grafana/ui": "workspace:*",
    "@kusto/monaco-kusto": "5.3.6",
    "@leeoniya/ufuzzy": "1.0.6",
    "@lezer/common": "1.0.2",
    "@lezer/highlight": "1.1.3",
    "@lezer/lr": "1.3.3",
    "@opentelemetry/api": "1.4.0",
    "@opentelemetry/exporter-collector": "0.25.0",
    "@opentelemetry/semantic-conventions": "1.9.1",
    "@popperjs/core": "2.11.6",
    "@prometheus-io/lezer-promql": "^0.37.0-rc.1",
    "@pyroscope/flamegraph": "^0.35.5",
    "@react-aria/button": "3.6.1",
    "@react-aria/dialog": "3.3.1",
    "@react-aria/focus": "3.8.0",
    "@react-aria/interactions": "3.11.0",
    "@react-aria/menu": "3.6.1",
    "@react-aria/overlays": "3.10.1",
    "@react-aria/utils": "3.13.1",
    "@react-stately/collections": "3.4.1",
    "@react-stately/menu": "3.4.1",
    "@react-stately/tree": "3.3.1",
    "@reduxjs/toolkit": "1.9.3",
    "@sentry/browser": "6.19.7",
    "@sentry/types": "6.19.7",
    "@sentry/utils": "6.19.7",
    "@testing-library/react-hooks": "^8.0.1",
    "@types/react-resizable": "3.0.3",
    "@types/webpack-env": "1.18.0",
    "@visx/event": "3.0.1",
    "@visx/gradient": "3.0.0",
    "@visx/group": "3.0.0",
    "@visx/scale": "3.0.0",
    "@visx/shape": "3.0.0",
    "@visx/tooltip": "3.0.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",
    "ansicolor": "1.1.100",
    "app": "link:./public/app",
    "baron": "3.0.3",
    "brace": "0.11.1",
    "calculate-size": "1.1.1",
    "centrifuge": "3.1.0",
    "classnames": "2.3.2",
    "combokeys": "^3.0.0",
    "comlink": "4.4.1",
    "common-tags": "1.8.2",
    "core-js": "3.28.0",
    "d3": "7.8.2",
    "d3-force": "3.0.0",
    "d3-scale-chromatic": "3.0.0",
    "dangerously-set-html-content": "1.0.9",
    "date-fns": "2.29.3",
    "debounce-promise": "3.1.2",
    "emotion": "11.0.0",
    "eventemitter3": "5.0.0",
    "fast-deep-equal": "^3.1.3",
    "fast-json-patch": "3.1.1",
    "file-saver": "2.0.5",
    "framework-utils": "^1.1.0",
    "history": "4.10.1",
    "hoist-non-react-statics": "3.3.2",
    "i18next": "^22.0.0",
    "immer": "9.0.19",
    "immutable": "4.2.4",
    "jquery": "3.6.3",
    "js-yaml": "^4.1.0",
    "json-markup": "^1.1.0",
    "json-source-map": "0.6.1",
    "jsurl": "^0.1.5",
    "kbar": "0.1.0-beta.40",
    "lodash": "4.17.21",
    "logfmt": "^1.3.2",
    "lru-cache": "7.17.0",
    "lru-memoize": "^1.1.0",
    "memoize-one": "6.0.0",
    "moment": "2.29.4",
    "moment-timezone": "0.5.41",
    "monaco-editor": "0.34.0",
    "monaco-promql": "1.7.4",
    "mousetrap": "1.6.5",
    "mousetrap-global-bind": "1.1.0",
    "moveable": "0.43.1",
    "ol": "7.2.2",
    "ol-ext": "4.0.6",
    "papaparse": "5.3.2",
    "pluralize": "^8.0.0",
    "prismjs": "1.29.0",
    "prop-types": "15.8.1",
    "pseudoizer": "^0.1.0",
    "rc-cascader": "3.10.2",
    "rc-drawer": "6.1.3",
    "rc-slider": "10.1.1",
    "rc-time-picker": "3.7.3",
    "rc-tree": "5.7.2",
    "re-resizable": "6.9.9",
    "react": "18.2.0",
    "react-awesome-query-builder": "5.4.0",
    "react-beautiful-dnd": "13.1.1",
    "react-diff-viewer": "^3.1.1",
    "react-dom": "18.2.0",
    "react-draggable": "4.4.5",
    "react-dropzone": "^14.2.3",
    "react-enable": "^3.1.0",
    "react-grid-layout": "1.3.4",
    "react-highlight-words": "0.20.0",
    "react-hook-form": "7.5.3",
    "react-i18next": "^12.0.0",
    "react-inlinesvg": "3.0.2",
    "react-moveable": "0.46.1",
    "react-popper": "2.3.0",
    "react-popper-tooltip": "4.4.2",
    "react-redux": "7.2.6",
    "react-resizable": "3.0.4",
    "react-router-dom": "5.3.3",
    "react-select": "5.7.0",
    "react-split-pane": "0.1.92",
    "react-table": "7.8.0",
    "react-transition-group": "4.4.5",
    "react-use": "17.4.0",
    "react-virtual": "2.10.4",
    "react-virtualized-auto-sizer": "1.0.7",
    "react-window": "1.8.8",
    "react-window-infinite-loader": "1.0.8",
    "redux": "4.2.1",
    "redux-thunk": "2.4.2",
    "regenerator-runtime": "0.13.11",
    "reselect": "4.1.7",
    "rxjs": "7.8.0",
    "sass": "link:./public/sass",
    "selecto": "1.22.0",
    "semver": "7.3.8",
    "slate": "0.47.9",
    "slate-plain-serializer": "0.7.13",
    "slate-react": "0.22.10",
    "sql-formatter-plus": "^1.3.6",
    "symbol-observable": "4.0.0",
    "test": "link:./public/test",
    "tether-drop": "https://github.com/torkelo/drop",
    "tinycolor2": "1.6.0",
    "tslib": "2.5.0",
    "tween-functions": "^1.2.0",
    "uplot": "1.6.24",
    "uuid": "9.0.0",
    "vendor": "link:./public/vendor",
    "visjs-network": "4.25.0",
    "whatwg-fetch": "3.6.2",
    "xlsx": "https://cdn.sheetjs.com/xlsx-0.19.1/xlsx-0.19.1.tgz"
  },
  "resolutions": {
    "underscore": "1.13.6",
    "@types/slate": "0.47.11",
    "@rushstack/rig-package": "0.3.18",
    "@rushstack/ts-command-line": "4.13.2",
    "@storybook/builder-webpack4/css-loader": "6.7.3",
    "@storybook/builder-webpack4/html-webpack-plugin": "5.5.0",
    "@storybook/builder-webpack4/webpack": "5.76.0",
    "@storybook/core-common/webpack": "5.76.0",
    "@storybook/core-server/webpack": "5.76.0",
    "@storybook/manager-webpack4/css-loader": "6.7.3",
    "@storybook/manager-webpack4/html-webpack-plugin": "5.5.0",
    "@storybook/manager-webpack4/webpack": "5.76.0",
    "@storybook/builder-webpack5/webpack": "5.76.0",
    "@storybook/manager-webpack5/webpack": "5.76.0",
    "ngtemplate-loader/loader-utils": "^2.0.0",
    "trim": "0.0.3",
    "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",
    "@storybook/addon-docs@6.5.16": "patch:@storybook/addon-docs@npm:6.5.16#.yarn/patches/@storybook-addon-docs-npm-6.5.16-56ecbd77e7.patch"
  },
  "workspaces": {
    "packages": [
      "packages/*",
      "plugins-bundled/internal/*"
    ]
  },
  "engines": {
    "node": ">= 18"
  },
  "packageManager": "yarn@3.4.1"
}
back to top