2013-07-21 05:56:59 +08:00
|
|
|
{
|
2019-07-24 08:17:41 +08:00
|
|
|
"author": "Grafana Labs",
|
|
|
|
"license": "Apache-2.0",
|
2018-12-20 16:25:04 +08:00
|
|
|
"private": true,
|
2014-01-19 23:13:28 +08:00
|
|
|
"name": "grafana",
|
2021-01-20 21:24:40 +08:00
|
|
|
"version": "7.5.0-pre",
|
2020-02-28 01:00:36 +08:00
|
|
|
"repository": "github:grafana/grafana",
|
2020-03-25 14:19:57 +08:00
|
|
|
"scripts": {
|
|
|
|
"api-tests": "jest --notify --watch --config=devenv/e2e-api-tests/jest.js",
|
2020-12-01 17:32:12 +08:00
|
|
|
"build": "node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js",
|
2020-03-25 14:19:57 +08:00
|
|
|
"dev": "webpack --progress --colors --config scripts/webpack/webpack.dev.js",
|
|
|
|
"e2e": "./e2e/start-and-run-suite",
|
2020-05-03 19:51:30 +08:00
|
|
|
"e2e:debug": "./e2e/start-and-run-suite debug",
|
2020-03-25 14:19:57 +08:00
|
|
|
"e2e:dev": "./e2e/start-and-run-suite dev",
|
2020-11-09 22:14:04 +08:00
|
|
|
"test": "jest --notify --watch",
|
2020-12-01 17:32:12 +08:00
|
|
|
"lint": "yarn run lint:ts && yarn run lint:sass",
|
|
|
|
"lint:ts": "eslint . --ext .js,.tsx,.ts --cache",
|
|
|
|
"lint:sass": "yarn run sass-lint -c public/sass/.sass-lint.yml 'public/sass/**/*.scss, packages/**/*.scss' -v -i '**/node_modules/**/*.scss'",
|
2020-11-09 22:14:04 +08:00
|
|
|
"test:ci": "mkdir -p reports/junit && export JEST_JUNIT_OUTPUT_DIR=reports/junit && jest --ci --reporters=default --reporters=jest-junit -w ${TEST_MAX_WORKERS:-100%}",
|
2020-03-25 14:19:57 +08:00
|
|
|
"lint:fix": "yarn lint --fix",
|
2020-04-21 16:41:50 +08:00
|
|
|
"packages:build": "lerna run clean && lerna run build --ignore @grafana-plugins/input-datasource",
|
|
|
|
"packages:docsExtract": "rm -rf ./reports/docs && lerna run docsExtract",
|
2020-04-28 15:53:58 +08:00
|
|
|
"packages:docsToMarkdown": "api-documenter markdown --input-folder ./reports/docs/ --output-folder ./docs/sources/packages_api/ --hugo",
|
2020-03-25 14:19:57 +08:00
|
|
|
"packages:prepare": "lerna version --no-push --no-git-tag-version --force-publish --exact",
|
|
|
|
"packages:publish": "lerna publish from-package --contents dist",
|
|
|
|
"packages:publishCanary": "lerna publish from-package --contents dist --dist-tag canary --yes",
|
|
|
|
"packages:publishLatest": "lerna publish from-package --contents dist --yes",
|
|
|
|
"packages:publishNext": "lerna publish from-package --contents dist --dist-tag next --yes",
|
2020-07-07 20:07:00 +08:00
|
|
|
"packages:publishDev": "lerna publish from-package --contents dist --dist-tag dev --yes --registry http://grafana-npm.local:4873 --force-publish=*",
|
2020-03-25 14:19:57 +08:00
|
|
|
"packages:typecheck": "lerna run typecheck",
|
2020-10-14 20:35:55 +08:00
|
|
|
"packages:clean": "lerna run clean",
|
2020-12-01 17:32:12 +08:00
|
|
|
"precommit": "yarn run lint-staged",
|
2020-03-25 14:19:57 +08:00
|
|
|
"prettier:check": "prettier --list-different \"**/*.{ts,tsx,scss}\"",
|
2021-01-20 14:59:48 +08:00
|
|
|
"prettier:write": "prettier --list-different \"**/*.{ts,tsx,scss,js}\" --write",
|
2020-03-25 14:19:57 +08:00
|
|
|
"start": "grafana-toolkit core:start --watchTheme",
|
|
|
|
"start:hot": "grafana-toolkit core:start --hot --watchTheme",
|
|
|
|
"start:ignoreTheme": "grafana-toolkit core:start --hot",
|
|
|
|
"start:noTsCheck": "grafana-toolkit core:start --noTsCheck",
|
|
|
|
"stats": "webpack --mode production --config scripts/webpack/webpack.prod.js --profile --json > compilation-stats.json",
|
2020-11-24 17:38:41 +08:00
|
|
|
"storybook": "yarn workspace @grafana/ui storybook --ci",
|
|
|
|
"storybook:build": "yarn workspace @grafana/ui storybook:build",
|
2020-03-25 14:19:57 +08:00
|
|
|
"themes:generate": "ts-node --project ./scripts/cli/tsconfig.json ./scripts/cli/generateSassVariableFiles.ts",
|
2020-12-01 17:32:12 +08:00
|
|
|
"typecheck": "tsc --noEmit && yarn run packages:typecheck",
|
2020-04-21 16:14:14 +08:00
|
|
|
"plugins:build-bundled": "grafana-toolkit plugin:bundle-managed",
|
2020-09-07 19:17:03 +08:00
|
|
|
"watch": "yarn start -d watch,start core:start --watchTheme",
|
2020-12-08 19:56:37 +08:00
|
|
|
"ci:test-frontend": "yarn run prettier:check && yarn run typecheck && yarn run lint && yarn run test:ci && yarn grafana-toolkit node-version-check && ./scripts/ci-check-strict.sh"
|
2020-03-25 14:19:57 +08:00
|
|
|
},
|
2020-04-29 03:26:36 +08:00
|
|
|
"grafana": {
|
2021-01-20 19:07:36 +08:00
|
|
|
"whatsNewUrl": "https://grafana.com/docs/grafana/latest/guides/whats-new-in-v7-4/",
|
2020-11-24 17:24:18 +08:00
|
|
|
"releaseNotesUrl": "https://grafana.com/docs/grafana/latest/release-notes/"
|
2020-04-29 03:26:36 +08:00
|
|
|
},
|
2020-03-25 14:19:57 +08:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-12-01 17:32:12 +08:00
|
|
|
"pre-commit": "yarn run precommit"
|
2020-03-25 14:19:57 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
2020-08-11 23:52:44 +08:00
|
|
|
"*.{js,ts,tsx}": [
|
|
|
|
"eslint --ext .js,.tsx,.ts --cache --fix"
|
|
|
|
],
|
|
|
|
"*.{json,scss}": [
|
2020-05-05 17:54:15 +08:00
|
|
|
"prettier --write"
|
2020-03-25 14:19:57 +08:00
|
|
|
],
|
|
|
|
"*pkg/**/*.go": [
|
2020-05-05 17:54:15 +08:00
|
|
|
"gofmt -w -s"
|
2020-03-25 14:19:57 +08:00
|
|
|
]
|
|
|
|
},
|
2013-07-21 05:56:59 +08:00
|
|
|
"devDependencies": {
|
2020-02-13 13:26:52 +08:00
|
|
|
"@babel/core": "7.8.4",
|
2020-01-30 17:54:11 +08:00
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3",
|
|
|
|
"@babel/plugin-proposal-optional-chaining": "7.8.3",
|
|
|
|
"@babel/plugin-syntax-dynamic-import": "7.8.3",
|
2020-02-13 13:26:52 +08:00
|
|
|
"@babel/preset-env": "7.8.4",
|
2020-01-30 17:54:11 +08:00
|
|
|
"@babel/preset-react": "7.8.3",
|
|
|
|
"@babel/preset-typescript": "7.8.3",
|
2020-03-16 20:10:42 +08:00
|
|
|
"@emotion/core": "10.0.27",
|
2020-11-27 17:21:28 +08:00
|
|
|
"@grafana/api-documenter": "7.11.2",
|
2020-10-14 23:03:35 +08:00
|
|
|
"@grafana/api-extractor": "7.10.1",
|
2021-01-20 14:59:48 +08:00
|
|
|
"@grafana/eslint-config": "2.1.1",
|
2019-04-17 18:43:00 +08:00
|
|
|
"@rtsao/plugin-proposal-class-properties": "7.0.1-patch.1",
|
2020-11-13 18:55:19 +08:00
|
|
|
"@testing-library/jest-dom": "5.11.5",
|
|
|
|
"@testing-library/react": "11.1.2",
|
2019-12-17 20:42:30 +08:00
|
|
|
"@testing-library/react-hooks": "^3.2.1",
|
2020-09-04 23:38:27 +08:00
|
|
|
"@testing-library/user-event": "^12.1.3",
|
2019-08-20 17:14:53 +08:00
|
|
|
"@types/angular": "1.6.56",
|
|
|
|
"@types/angular-route": "1.7.0",
|
2020-02-14 22:15:51 +08:00
|
|
|
"@types/classnames": "2.2.9",
|
2019-04-17 18:43:00 +08:00
|
|
|
"@types/clipboard": "2.0.1",
|
2020-01-07 18:59:11 +08:00
|
|
|
"@types/d3": "5.7.2",
|
2021-01-19 23:34:43 +08:00
|
|
|
"@types/d3-force": "^2.1.0",
|
2019-08-20 17:14:53 +08:00
|
|
|
"@types/d3-scale-chromatic": "1.3.1",
|
2020-02-14 22:16:07 +08:00
|
|
|
"@types/enzyme": "3.10.5",
|
|
|
|
"@types/enzyme-adapter-react-16": "1.0.6",
|
2019-08-20 17:14:53 +08:00
|
|
|
"@types/file-saver": "2.0.1",
|
2019-08-23 21:17:13 +08:00
|
|
|
"@types/is-hotkey": "0.1.1",
|
2020-11-29 15:32:26 +08:00
|
|
|
"@types/jest": "26.0.15",
|
2020-06-18 17:35:11 +08:00
|
|
|
"@types/jquery": "3.3.38",
|
2020-02-14 22:15:51 +08:00
|
|
|
"@types/lodash": "4.14.149",
|
2019-12-09 16:46:52 +08:00
|
|
|
"@types/lru-cache": "^5.1.0",
|
2020-04-27 21:28:06 +08:00
|
|
|
"@types/moment-timezone": "0.5.13",
|
2019-08-20 17:14:53 +08:00
|
|
|
"@types/mousetrap": "1.6.3",
|
2020-02-14 21:53:06 +08:00
|
|
|
"@types/node": "13.7.0",
|
2020-09-07 12:22:54 +08:00
|
|
|
"@types/papaparse": "5.2.0",
|
2019-08-20 17:14:53 +08:00
|
|
|
"@types/prismjs": "1.16.0",
|
2020-11-19 02:37:17 +08:00
|
|
|
"@types/react": "16.9.9",
|
2020-05-08 01:53:58 +08:00
|
|
|
"@types/react-beautiful-dnd": "12.1.2",
|
2020-11-19 02:37:17 +08:00
|
|
|
"@types/react-dom": "16.9.9",
|
2020-11-30 01:10:51 +08:00
|
|
|
"@types/react-grid-layout": "1.1.1",
|
2020-04-10 07:53:33 +08:00
|
|
|
"@types/react-redux": "7.1.7",
|
2020-01-28 14:43:18 +08:00
|
|
|
"@types/react-select": "3.0.8",
|
2020-02-14 22:16:07 +08:00
|
|
|
"@types/react-test-renderer": "16.9.2",
|
2020-11-20 15:12:42 +08:00
|
|
|
"@types/react-transition-group": "4.4.0",
|
2020-03-25 00:01:54 +08:00
|
|
|
"@types/react-window": "1.8.1",
|
2019-08-20 17:14:53 +08:00
|
|
|
"@types/redux-logger": "3.0.7",
|
2020-04-10 07:53:33 +08:00
|
|
|
"@types/redux-mock-store": "1.0.2",
|
2019-08-20 17:14:53 +08:00
|
|
|
"@types/reselect": "2.2.0",
|
2019-09-23 19:26:05 +08:00
|
|
|
"@types/slate": "0.47.1",
|
|
|
|
"@types/slate-plain-serializer": "0.6.1",
|
|
|
|
"@types/slate-react": "0.22.5",
|
2020-11-13 21:48:11 +08:00
|
|
|
"@types/testing-library__jest-dom": "5.9.5",
|
2020-02-14 22:16:07 +08:00
|
|
|
"@types/testing-library__react-hooks": "^3.2.0",
|
2019-08-20 17:14:53 +08:00
|
|
|
"@types/tinycolor2": "1.4.2",
|
2020-09-25 22:48:41 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.0.1",
|
|
|
|
"@typescript-eslint/parser": "4.0.1",
|
2020-11-19 02:37:17 +08:00
|
|
|
"@wojtekmaj/enzyme-adapter-react-17": "0.3.1",
|
2020-09-25 22:48:41 +08:00
|
|
|
"angular-mocks": "1.6.6",
|
2020-03-16 20:10:42 +08:00
|
|
|
"autoprefixer": "9.7.4",
|
2021-01-06 00:33:52 +08:00
|
|
|
"axios": "0.21.1",
|
2019-04-17 18:43:00 +08:00
|
|
|
"babel-core": "7.0.0-bridge.0",
|
2020-11-29 15:32:26 +08:00
|
|
|
"babel-jest": "26.6.3",
|
2020-02-13 13:26:52 +08:00
|
|
|
"babel-loader": "8.0.6",
|
2019-04-17 18:43:00 +08:00
|
|
|
"babel-plugin-angularjs-annotate": "0.10.0",
|
2020-03-16 16:57:35 +08:00
|
|
|
"clean-webpack-plugin": "3.0.0",
|
|
|
|
"css-loader": "3.4.2",
|
2020-02-14 22:16:07 +08:00
|
|
|
"enzyme": "3.11.0",
|
|
|
|
"enzyme-to-json": "3.4.4",
|
2020-11-19 02:37:17 +08:00
|
|
|
"es-abstract": "1.18.0-next.1",
|
2020-03-16 20:10:42 +08:00
|
|
|
"es6-promise": "4.2.8",
|
2019-04-17 18:43:00 +08:00
|
|
|
"es6-shim": "0.35.5",
|
2020-12-01 17:32:12 +08:00
|
|
|
"eslint": "^7.14.0",
|
2021-01-20 14:59:48 +08:00
|
|
|
"eslint-config-prettier": "7.2.0",
|
2020-08-11 23:52:44 +08:00
|
|
|
"eslint-plugin-jsdoc": "28.6.1",
|
2020-12-01 17:32:12 +08:00
|
|
|
"eslint-plugin-no-only-tests": "^2.4.0",
|
2021-01-20 14:59:48 +08:00
|
|
|
"eslint-plugin-prettier": "3.3.1",
|
2020-11-18 22:36:35 +08:00
|
|
|
"eslint-plugin-react": "7.21.5",
|
2020-10-21 15:06:41 +08:00
|
|
|
"eslint-plugin-react-hooks": "4.1.2",
|
2020-02-14 22:16:07 +08:00
|
|
|
"expect.js": "0.3.1",
|
2019-03-12 22:26:46 +08:00
|
|
|
"expose-loader": "0.7.5",
|
2020-03-16 16:57:35 +08:00
|
|
|
"file-loader": "5.0.2",
|
2020-06-22 22:15:29 +08:00
|
|
|
"fork-ts-checker-webpack-plugin": "5.0.0",
|
2019-04-17 18:43:00 +08:00
|
|
|
"gaze": "1.1.3",
|
2020-03-16 20:10:42 +08:00
|
|
|
"glob": "7.1.6",
|
2019-03-12 22:26:46 +08:00
|
|
|
"html-loader": "0.5.5",
|
2019-04-17 18:43:00 +08:00
|
|
|
"html-webpack-harddisk-plugin": "1.0.1",
|
|
|
|
"html-webpack-plugin": "3.2.0",
|
2020-03-16 20:10:42 +08:00
|
|
|
"husky": "4.2.1",
|
2020-11-29 15:32:26 +08:00
|
|
|
"jest": "26.6.3",
|
|
|
|
"jest-canvas-mock": "2.3.0",
|
2020-06-15 19:06:37 +08:00
|
|
|
"jest-date-mock": "1.0.8",
|
2020-11-18 22:18:55 +08:00
|
|
|
"jest-matcher-utils": "26.0.0",
|
2021-01-05 20:38:32 +08:00
|
|
|
"lerna": "^3.22.1",
|
2020-03-16 20:10:42 +08:00
|
|
|
"lint-staged": "10.0.7",
|
2020-02-13 16:10:17 +08:00
|
|
|
"load-grunt-tasks": "5.1.0",
|
2020-03-16 16:57:35 +08:00
|
|
|
"mini-css-extract-plugin": "0.9.0",
|
2020-02-14 22:16:07 +08:00
|
|
|
"mocha": "7.0.1",
|
2020-03-16 20:10:42 +08:00
|
|
|
"module-alias": "2.2.2",
|
2020-06-30 01:58:47 +08:00
|
|
|
"monaco-editor": "0.20.0",
|
|
|
|
"monaco-editor-webpack-plugin": "1.9.0",
|
2020-02-17 18:13:13 +08:00
|
|
|
"mutationobserver-shim": "0.3.3",
|
2019-04-17 18:43:00 +08:00
|
|
|
"ngtemplate-loader": "2.0.1",
|
2021-01-21 18:20:30 +08:00
|
|
|
"optimize-css-assets-webpack-plugin": "5.0.4",
|
2020-03-16 20:10:42 +08:00
|
|
|
"postcss-browser-reporter": "0.6.0",
|
2019-04-17 18:43:00 +08:00
|
|
|
"postcss-loader": "3.0.0",
|
|
|
|
"postcss-reporter": "6.0.1",
|
2021-01-20 14:59:48 +08:00
|
|
|
"prettier": "2.2.1",
|
2019-04-17 18:43:00 +08:00
|
|
|
"react-hot-loader": "4.8.0",
|
2020-02-14 22:16:07 +08:00
|
|
|
"react-test-renderer": "16.12.0",
|
2020-04-10 07:53:33 +08:00
|
|
|
"redux-mock-store": "1.5.4",
|
2019-04-17 18:43:00 +08:00
|
|
|
"regexp-replace-loader": "1.0.1",
|
2020-03-16 20:10:42 +08:00
|
|
|
"rimraf": "3.0.1",
|
2019-09-24 04:48:39 +08:00
|
|
|
"rxjs-spy": "^7.5.1",
|
2020-10-30 15:45:13 +08:00
|
|
|
"sass": "1.27.0",
|
2019-04-17 18:43:00 +08:00
|
|
|
"sass-lint": "1.12.1",
|
2020-03-16 16:57:35 +08:00
|
|
|
"sass-loader": "8.0.2",
|
2020-03-16 20:14:57 +08:00
|
|
|
"sinon": "8.1.1",
|
2020-03-16 16:57:35 +08:00
|
|
|
"style-loader": "1.1.3",
|
2021-01-20 20:32:24 +08:00
|
|
|
"terser-webpack-plugin": "2.3.7",
|
2020-11-29 15:32:26 +08:00
|
|
|
"ts-jest": "26.4.4",
|
2020-12-03 23:05:59 +08:00
|
|
|
"ts-node": "9.0.0",
|
|
|
|
"tslib": "2.0.3",
|
|
|
|
"typescript": "4.1.2",
|
2020-03-16 16:57:35 +08:00
|
|
|
"webpack": "4.41.5",
|
|
|
|
"webpack-bundle-analyzer": "3.6.0",
|
2019-04-17 18:43:00 +08:00
|
|
|
"webpack-cleanup-plugin": "0.5.1",
|
2020-03-16 16:57:35 +08:00
|
|
|
"webpack-cli": "3.3.10",
|
2021-01-20 20:32:24 +08:00
|
|
|
"webpack-dev-server": "3.11.1",
|
2020-03-16 16:57:35 +08:00
|
|
|
"webpack-merge": "4.2.2",
|
2019-04-17 18:43:00 +08:00
|
|
|
"zone.js": "0.7.8"
|
2013-07-21 05:56:59 +08:00
|
|
|
},
|
2014-05-31 13:46:39 +08:00
|
|
|
"dependencies": {
|
2019-09-23 19:26:05 +08:00
|
|
|
"@grafana/slate-react": "0.22.9-grafana",
|
2020-11-20 15:12:42 +08:00
|
|
|
"@popperjs/core": "2.5.4",
|
2021-01-26 17:18:42 +08:00
|
|
|
"@reduxjs/toolkit": "1.5.0",
|
2020-11-12 19:29:43 +08:00
|
|
|
"@sentry/browser": "5.25.0",
|
|
|
|
"@sentry/types": "5.24.2",
|
|
|
|
"@sentry/utils": "5.24.2",
|
2020-01-28 14:43:18 +08:00
|
|
|
"@torkelo/react-select": "3.0.8",
|
2020-05-21 22:18:09 +08:00
|
|
|
"@types/antlr4": "^4.7.1",
|
2020-04-21 16:42:57 +08:00
|
|
|
"@types/braintree__sanitize-url": "4.0.0",
|
2020-04-26 04:48:20 +08:00
|
|
|
"@types/common-tags": "^1.8.0",
|
2020-10-21 15:06:41 +08:00
|
|
|
"@types/hoist-non-react-statics": "3.3.1",
|
2020-04-26 04:48:20 +08:00
|
|
|
"@types/jsurl": "^1.2.28",
|
2020-01-17 21:28:00 +08:00
|
|
|
"@types/md5": "^2.1.33",
|
2019-11-06 18:04:27 +08:00
|
|
|
"@types/react-loadable": "5.5.2",
|
2020-01-16 18:11:33 +08:00
|
|
|
"@types/react-virtualized-auto-sizer": "1.0.0",
|
2020-07-27 15:26:16 +08:00
|
|
|
"@types/sockjs-client": "^1.1.1",
|
2020-08-25 14:58:21 +08:00
|
|
|
"@types/uuid": "8.3.0",
|
2020-04-10 01:44:05 +08:00
|
|
|
"@welldone-software/why-did-you-render": "4.0.6",
|
2020-01-22 15:15:31 +08:00
|
|
|
"abortcontroller-polyfill": "1.4.0",
|
2020-11-03 20:18:10 +08:00
|
|
|
"angular": "1.8.2",
|
2018-06-26 16:28:37 +08:00
|
|
|
"angular-bindonce": "0.3.1",
|
2020-11-03 20:18:10 +08:00
|
|
|
"angular-route": "1.8.2",
|
|
|
|
"angular-sanitize": "1.8.2",
|
2020-05-21 22:18:09 +08:00
|
|
|
"antlr4": "^4.8.0",
|
2019-04-17 18:43:00 +08:00
|
|
|
"baron": "3.0.3",
|
2020-03-16 20:14:57 +08:00
|
|
|
"brace": "0.11.1",
|
2019-04-09 20:25:13 +08:00
|
|
|
"calculate-size": "1.1.1",
|
2020-07-27 15:26:16 +08:00
|
|
|
"centrifuge": "^2.6.4",
|
2019-04-17 18:43:00 +08:00
|
|
|
"classnames": "2.2.6",
|
|
|
|
"clipboard": "2.0.4",
|
2020-04-26 04:48:20 +08:00
|
|
|
"common-tags": "^1.8.0",
|
2020-01-30 17:54:11 +08:00
|
|
|
"core-js": "3.6.4",
|
2020-01-07 18:59:11 +08:00
|
|
|
"d3": "5.15.0",
|
2021-01-19 23:34:43 +08:00
|
|
|
"d3-force": "^2.1.1",
|
2019-08-26 12:52:40 +08:00
|
|
|
"d3-scale-chromatic": "1.5.0",
|
2020-07-18 00:00:58 +08:00
|
|
|
"dangerously-set-html-content": "1.0.6",
|
2020-01-21 14:40:05 +08:00
|
|
|
"emotion": "10.0.27",
|
2020-03-16 20:14:57 +08:00
|
|
|
"eventemitter3": "4.0.0",
|
2019-05-10 00:42:35 +08:00
|
|
|
"fast-text-encoding": "^1.0.0",
|
2020-03-16 20:14:57 +08:00
|
|
|
"file-saver": "2.0.2",
|
2020-10-21 15:06:41 +08:00
|
|
|
"hoist-non-react-statics": "3.3.2",
|
2019-04-17 18:43:00 +08:00
|
|
|
"immutable": "3.8.2",
|
2020-03-16 20:14:57 +08:00
|
|
|
"is-hotkey": "0.1.6",
|
2020-06-18 17:35:11 +08:00
|
|
|
"jquery": "3.5.1",
|
2020-04-26 04:48:20 +08:00
|
|
|
"jsurl": "^0.1.5",
|
2021-01-19 00:22:25 +08:00
|
|
|
"lodash": "4.17.20",
|
2019-12-09 16:46:52 +08:00
|
|
|
"lru-cache": "^5.1.1",
|
2020-01-17 21:28:00 +08:00
|
|
|
"md5": "^2.2.1",
|
2019-08-29 19:41:45 +08:00
|
|
|
"memoize-one": "5.1.1",
|
2019-04-17 18:43:00 +08:00
|
|
|
"moment": "2.24.0",
|
2020-04-27 21:28:06 +08:00
|
|
|
"moment-timezone": "0.5.28",
|
2020-03-16 20:14:57 +08:00
|
|
|
"mousetrap": "1.6.5",
|
2019-04-17 18:43:00 +08:00
|
|
|
"mousetrap-global-bind": "1.1.0",
|
2020-03-16 22:04:02 +08:00
|
|
|
"nodemon": "2.0.2",
|
2020-09-07 12:22:54 +08:00
|
|
|
"papaparse": "5.3.0",
|
2020-08-09 14:55:26 +08:00
|
|
|
"prismjs": "1.21.0",
|
2019-04-17 18:43:00 +08:00
|
|
|
"prop-types": "15.7.2",
|
2020-03-25 17:10:26 +08:00
|
|
|
"rc-cascader": "1.0.1",
|
Explore: Rich History (#22570)
* Explore: Refactor active buttons css
* Explore: Add query history button
* WIP: Creating drawer
* WIP: Create custom drawer (for now)
* Revert changes to Drawer.tsx
* WIP: Layout finished
* Rich History: Set up boilerplate for Settings
* WIP: Query history cards
* Refactor, split components
* Add resizability, interactivity
* Save history to local storage
* Visualise queries from queryhistory local storage
* Set up query history settings
* Refactor
* Create link, un-refactored verison
* Copyable url
* WIP: Add slider
* Commenting feature
* Slider filtration
* Add headings
* Hide Rich history behind feature toggle
* Cleaning up, refactors
* Update tests
* Implement getQueryDisplayText
* Update lockfile for new dependencies
* Update heading based on sorting
* Fix typescript strinctNullCheck errors
* Fix Forms, new forms
* Fixes based on provided feedback
* Fixes, splitting component into two
* Add tooltips, add delete history button
* Clicking on card adds queries to query rows
* Delete history, width of drawers
* UI/UX changes, updates
* Add number of queries to headings, box shadows
* Fix slider, remove feature toggle
* Fix typo in the beta announcement
* Fix how the rich history state is rendered when initialization
* Move updateFilters when activeDatasourceFilter onlyto RichHistory, remove duplicated code
* Fix typescript strictnull errors, not used variables errors
2020-03-10 22:08:15 +08:00
|
|
|
"re-resizable": "^6.2.0",
|
2020-11-19 02:37:17 +08:00
|
|
|
"react": "17.0.1",
|
2020-11-25 17:24:00 +08:00
|
|
|
"react-beautiful-dnd": "13.0.0",
|
2020-11-19 02:37:17 +08:00
|
|
|
"react-dom": "17.0.1",
|
2020-11-30 01:10:51 +08:00
|
|
|
"react-grid-layout": "1.2.0",
|
2020-03-25 21:23:58 +08:00
|
|
|
"react-highlight-words": "0.16.0",
|
2019-11-06 18:04:27 +08:00
|
|
|
"react-loadable": "5.5.0",
|
2020-11-20 15:12:42 +08:00
|
|
|
"react-popper": "2.2.4",
|
2020-04-10 07:53:33 +08:00
|
|
|
"react-redux": "7.2.0",
|
2020-10-21 15:58:23 +08:00
|
|
|
"react-reverse-portal": "^2.0.1",
|
2020-03-24 12:54:48 +08:00
|
|
|
"react-sizeme": "2.6.12",
|
2020-02-08 19:01:10 +08:00
|
|
|
"react-split-pane": "0.1.89",
|
2020-11-20 15:12:42 +08:00
|
|
|
"react-transition-group": "4.4.1",
|
2020-03-24 17:50:10 +08:00
|
|
|
"react-use": "13.27.0",
|
2020-01-16 18:11:33 +08:00
|
|
|
"react-virtualized-auto-sizer": "1.0.2",
|
2020-03-25 00:01:54 +08:00
|
|
|
"react-window": "1.8.5",
|
2020-04-10 07:53:33 +08:00
|
|
|
"redux": "4.0.5",
|
2019-04-17 18:43:00 +08:00
|
|
|
"redux-logger": "3.0.6",
|
|
|
|
"redux-thunk": "2.3.0",
|
2020-01-30 17:54:11 +08:00
|
|
|
"regenerator-runtime": "0.13.3",
|
2019-04-17 18:43:00 +08:00
|
|
|
"reselect": "4.0.0",
|
2017-12-30 04:49:54 +08:00
|
|
|
"rst2html": "github:thoward/rst2html#990cb89",
|
2020-10-29 21:50:42 +08:00
|
|
|
"rxjs": "6.6.3",
|
2020-03-16 20:14:57 +08:00
|
|
|
"search-query-parser": "1.5.4",
|
2019-09-23 19:26:05 +08:00
|
|
|
"slate": "0.47.8",
|
|
|
|
"slate-plain-serializer": "0.7.10",
|
2020-07-27 15:26:16 +08:00
|
|
|
"sockjs-client": "^1.4.0",
|
2020-03-16 20:14:57 +08:00
|
|
|
"tether": "1.4.7",
|
2018-02-25 07:50:49 +08:00
|
|
|
"tether-drop": "https://github.com/torkelo/drop/tarball/master",
|
2019-04-17 18:43:00 +08:00
|
|
|
"tinycolor2": "1.4.1",
|
2019-12-05 15:30:39 +08:00
|
|
|
"tti-polyfill": "0.2.2",
|
2020-08-25 14:58:21 +08:00
|
|
|
"uuid": "8.3.0",
|
2020-11-09 22:31:03 +08:00
|
|
|
"visjs-network": "4.25.0",
|
|
|
|
"whatwg-fetch": "3.1.0"
|
2018-05-11 20:10:54 +08:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2019-04-17 18:43:00 +08:00
|
|
|
"caniuse-db": "1.0.30000772"
|
2018-12-20 16:25:04 +08:00
|
|
|
},
|
2018-12-25 16:59:23 +08:00
|
|
|
"workspaces": {
|
2018-12-25 15:55:44 +08:00
|
|
|
"packages": [
|
2020-04-07 15:04:24 +08:00
|
|
|
"packages/*",
|
|
|
|
"plugins-bundled/internal/*"
|
2018-12-25 15:55:44 +08:00
|
|
|
],
|
|
|
|
"nohoist": [
|
|
|
|
"**/@types/*",
|
2020-11-24 17:38:41 +08:00
|
|
|
"**/@types/*/**",
|
|
|
|
"@storybook",
|
|
|
|
"**/@storybook",
|
|
|
|
"**/@storybook/**"
|
2018-12-25 15:55:44 +08:00
|
|
|
]
|
2019-05-08 22:50:21 +08:00
|
|
|
},
|
|
|
|
"_moduleAliases": {
|
|
|
|
"puppeteer": "node_modules/puppeteer-core"
|
2019-07-05 16:46:25 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
2020-12-03 01:18:49 +08:00
|
|
|
"node": ">= 14"
|
2020-03-18 05:08:32 +08:00
|
|
|
},
|
|
|
|
"volta": {
|
2020-12-03 01:18:49 +08:00
|
|
|
"node": "14.15.1"
|
2018-12-25 15:55:44 +08:00
|
|
|
}
|
2018-05-29 19:23:07 +08:00
|
|
|
}
|