2016-09-09 23:10:54 +00:00
|
|
|
{
|
2016-09-15 21:53:29 +00:00
|
|
|
"name": "chronograf-ui",
|
2024-12-16 06:39:00 +00:00
|
|
|
"version": "1.10.6",
|
2021-03-16 05:50:32 +00:00
|
|
|
"private": true,
|
2022-07-26 08:37:29 +00:00
|
|
|
"license": "AGPL-3.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"description": "",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-11-08 23:23:42 +00:00
|
|
|
"url": "github:influxdata/chronograf"
|
2016-09-09 23:10:54 +00:00
|
|
|
},
|
2022-07-19 13:31:49 +00:00
|
|
|
"browserslist": "> 5%, last 2 versions, not dead",
|
|
|
|
"alias": {
|
|
|
|
"src": "./src",
|
|
|
|
"shared": "./src/shared",
|
|
|
|
"style": "./src/style",
|
|
|
|
"utils": "./src/utils"
|
|
|
|
},
|
|
|
|
"targets": {
|
|
|
|
"default": {
|
|
|
|
"source": "src/index.html",
|
|
|
|
"distDir": "./build"
|
|
|
|
}
|
|
|
|
},
|
2016-09-09 23:10:54 +00:00
|
|
|
"scripts": {
|
2022-07-25 13:36:06 +00:00
|
|
|
"start": "APP_VERSION=$npm_package_version PORT=8080 GIT_SHA=$(git rev-parse HEAD) parcel serve",
|
|
|
|
"build": "APP_VERSION=$npm_package_version GIT_SHA=$(git rev-parse HEAD) parcel build --log-level error",
|
2022-07-26 09:02:05 +00:00
|
|
|
"build:inspect": "APP_VERSION=$npm_package_version GIT_SHA=$(git rev-parse HEAD) parcel build --log-level verbose --no-optimize",
|
2022-07-19 13:31:49 +00:00
|
|
|
"clean": "rm -rf ./build/* && rm -rf ./.cache ../.parcel-cache",
|
2018-03-03 03:50:51 +00:00
|
|
|
"test": "jest",
|
2018-02-27 15:38:07 +00:00
|
|
|
"test:watch": "jest --watch",
|
2018-05-31 23:57:56 +00:00
|
|
|
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
|
2021-03-08 08:44:26 +00:00
|
|
|
"lint": "yarn run eslint; yarn run tsc",
|
2022-05-11 00:23:55 +00:00
|
|
|
"test:e2e": "yarn test:oauth-mock:check && CYPRESS_oauth2ServerURL=http://${OAUTH2_HOSTNAME:-localhost}:${OAUTH2_PORT:-8087} cypress run --browser chrome --headless --reporter junit --reporter-options 'mochaFile=cypress/results/results-[hash].xml'",
|
|
|
|
"test:e2e:headed": "yarn test:oauth-mock:check && CYPRESS_oauth2ServerURL=http://${OAUTH2_HOSTNAME:-localhost}:${OAUTH2_PORT:-8087} cypress open --browser chrome",
|
|
|
|
"test:oauth-mock": "yarn --cwd ../etc/oauth2-server-mock install && yarn --cwd ../etc/oauth2-server-mock start",
|
|
|
|
"test:oauth-mock:check": "nc -z ${OAUTH2_HOSTNAME:-localhost} ${OAUTH2_PORT:-8087} || (echo 'Unable to contact OAuth2 Server. Type \"yarn test:oauth-mock\" to start it.' && exit 1)",
|
2018-07-23 23:24:42 +00:00
|
|
|
"eslint": "eslint src",
|
|
|
|
"eslint:watch": "esw src --watch --cache",
|
2018-03-23 18:08:06 +00:00
|
|
|
"eslint:fix": "eslint src --fix",
|
2018-07-23 23:24:42 +00:00
|
|
|
"tsc": "tsc -p ./tsconfig.json --noEmit --pretty",
|
2018-10-30 18:35:34 +00:00
|
|
|
"tsc:watch": "tsc -p ./tsconfig.json --noEmit --pretty -w",
|
2021-03-11 07:51:52 +00:00
|
|
|
"dev": "yarn clean && yarn start",
|
|
|
|
"postinstall": "echo \"\" > ../node_modules/go.mod"
|
2016-09-09 23:10:54 +00:00
|
|
|
},
|
2016-09-15 21:53:29 +00:00
|
|
|
"author": "",
|
|
|
|
"devDependencies": {
|
2021-03-08 10:10:52 +00:00
|
|
|
"@babel/core": "^7.4.0",
|
2022-03-25 12:08:59 +00:00
|
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
|
|
"@babel/eslint-plugin": "^7.17.7",
|
2018-09-18 23:04:15 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.1.0",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.1.0",
|
2021-03-08 08:44:26 +00:00
|
|
|
"@babel/preset-env": "^7.13.9",
|
2018-09-18 23:04:15 +00:00
|
|
|
"@babel/preset-react": "^7.0.0",
|
2022-07-22 08:42:35 +00:00
|
|
|
"@babel/preset-typescript": "^7.18.6",
|
2022-07-22 09:39:34 +00:00
|
|
|
"@parcel/core": "^2.6.2",
|
2018-05-10 19:11:10 +00:00
|
|
|
"@types/chroma-js": "^1.3.4",
|
2018-05-07 17:04:56 +00:00
|
|
|
"@types/codemirror": "^0.0.56",
|
2018-06-27 22:14:35 +00:00
|
|
|
"@types/d3-color": "^1.2.1",
|
2018-06-22 20:23:34 +00:00
|
|
|
"@types/d3-scale": "^2.0.1",
|
2018-04-12 18:10:19 +00:00
|
|
|
"@types/dygraphs": "^1.1.6",
|
2018-09-14 16:06:33 +00:00
|
|
|
"@types/enzyme": "^3.1.13",
|
2021-03-08 08:44:26 +00:00
|
|
|
"@types/jest": "^26.0.20",
|
2021-09-29 07:26:22 +00:00
|
|
|
"@types/levelup": "^4.3.3",
|
2018-02-20 08:05:46 +00:00
|
|
|
"@types/lodash": "^4.14.104",
|
|
|
|
"@types/node": "^9.4.6",
|
2018-05-23 18:30:52 +00:00
|
|
|
"@types/papaparse": "^4.1.34",
|
2018-03-02 05:32:53 +00:00
|
|
|
"@types/prop-types": "^15.5.2",
|
2018-07-02 23:18:07 +00:00
|
|
|
"@types/qs": "^6.5.1",
|
2019-07-09 19:31:56 +00:00
|
|
|
"@types/react": "^16.8.23",
|
2018-04-11 01:32:28 +00:00
|
|
|
"@types/react-dnd": "^2.0.36",
|
|
|
|
"@types/react-dnd-html5-backend": "^2.1.9",
|
2019-07-09 19:31:56 +00:00
|
|
|
"@types/react-dom": "^16.8.4",
|
2023-09-13 09:26:16 +00:00
|
|
|
"@types/react-onclickoutside": "^6.7.4",
|
2018-04-11 00:20:01 +00:00
|
|
|
"@types/react-router": "^3.0.15",
|
2018-06-09 02:51:04 +00:00
|
|
|
"@types/react-router-redux": "4",
|
2018-05-10 19:11:10 +00:00
|
|
|
"@types/react-virtualized": "^9.18.3",
|
2018-04-06 21:08:51 +00:00
|
|
|
"@types/text-encoding": "^0.0.32",
|
2018-05-10 19:11:10 +00:00
|
|
|
"@types/uuid": "^3.4.3",
|
2022-03-24 08:11:15 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.16.0",
|
|
|
|
"@typescript-eslint/parser": "^5.16.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"autoprefixer": "^6.3.1",
|
2022-07-22 09:39:34 +00:00
|
|
|
"babel-jest": "^28.1.3",
|
2018-09-18 23:04:15 +00:00
|
|
|
"babel-plugin-lodash": "^3.3.4",
|
2021-03-08 08:44:26 +00:00
|
|
|
"babel-plugin-module-resolver": "^4.1.0",
|
2022-07-22 13:40:16 +00:00
|
|
|
"babel-plugin-transform-import-meta": "^2.2.0",
|
2018-09-14 16:06:33 +00:00
|
|
|
"enzyme": "^3.6.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.5.0",
|
2018-06-27 20:15:06 +00:00
|
|
|
"enzyme-to-json": "^3.3.4",
|
2021-03-08 08:44:26 +00:00
|
|
|
"eslint": "^7.21.0",
|
|
|
|
"eslint-config-prettier": "^8.1.0",
|
2021-03-08 10:09:20 +00:00
|
|
|
"eslint-plugin-import": "^2.22.1",
|
2021-03-08 08:44:26 +00:00
|
|
|
"eslint-plugin-jest": "^24.1.8",
|
2021-03-08 10:09:20 +00:00
|
|
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
2021-03-08 08:44:26 +00:00
|
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
|
|
"eslint-plugin-react": "^7.22.0",
|
|
|
|
"eslint-watch": "^7.0.0",
|
2024-12-09 16:15:37 +00:00
|
|
|
"express": "^4.21.1",
|
2018-08-17 21:02:25 +00:00
|
|
|
"fake-indexeddb": "^2.0.4",
|
2018-07-09 22:59:20 +00:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2022-07-22 09:39:34 +00:00
|
|
|
"jest": "^28.1.3",
|
|
|
|
"jest-environment-jsdom": "^28.1.3",
|
2022-07-22 08:42:35 +00:00
|
|
|
"jest-runner-eslint": "^1.0.1",
|
2022-02-11 00:22:38 +00:00
|
|
|
"node-sass": "^7.0.0",
|
2022-07-26 09:08:48 +00:00
|
|
|
"parcel": "^2.6.2",
|
2022-03-25 11:45:50 +00:00
|
|
|
"prettier": "2.2.1",
|
2020-03-22 13:21:45 +00:00
|
|
|
"sass": "^1.26.3",
|
2018-02-20 08:05:46 +00:00
|
|
|
"tslib": "^1.9.0",
|
2021-03-04 13:59:14 +00:00
|
|
|
"typescript": "^4.2.2"
|
2016-09-15 21:53:29 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-09-18 23:04:15 +00:00
|
|
|
"@babel/runtime": "^7.0.0",
|
|
|
|
"babel-polyfill": "^6.26.0",
|
2017-08-28 18:58:04 +00:00
|
|
|
"bignumber.js": "^4.0.2",
|
Cypress tests and e2e github action flow (#5896)
* test: welcome test, dashboard test, explore browser test
* test: snapshot testing
* feat: adding testing snapshots
* chore: update unmet peer dependency
* fix: name of dropdown toggle
* test: connecting to influxdb
* fix: remove unnecessary influxdb-onboarding.sh script.
* chore: updated go 1.17.1 for cypress tests
* refactor: remove unnecessary influxdb-onboarding command from Makefile
* refactor: remove unnecessary influxdb-onboarding command from circleci config
* test: initialising database by using environment properties (in Makefile)
* chore: fixing cypress tests
* test: deleting connection to influxd1
* tests: optimize build, reuse workspace
* tests: optimize build
* test: remove unused code
* fix: remove unuse dashboard
* chore(e2e-pipeline): add pipeline for chrono cypress tests
* chore: run action on push
* chore: fix e2e pipeline
* chore: add yarn install
* chore: add log upload
* chore: show logs to see what is going on with chronograf
* chore: fix log cats
* chore: add sleep
* fix: chronograf run command
* chore(ui): regenerate yarn.lock after rebase
* test: welcome test, dashboard test, explore browser test
* test: snapshot testing
* feat: adding testing snapshots
* chore(e2e): local script for influxdb enterprise deployment
* chore(e2e): update cert-manager in actions pipeline
* chore: fix coredns issue
* chore: fix certmanager deployment
* test: welcome test, dashboard test, explore browser test
* test: snapshot testing
* feat: adding testing snapshots
* chore: update unmet peer dependency
* test(cypress): add cypress env, and commands
* test(cypress): add basic InfluxDB setup connection test
* fix: temporary commented out the file as it uses non existing functions
* test(cypress): add dashboard create, rename and delelete test
* test(cypress): add routes
* chore: regenerate yarn.lock
* chore: remove unused file
* chore: comment out code
* chore: comment out code
* fix: remove calling non-existent function
* fix: createConnection uses unsafe SSL
* turns on flux
* test(cypress): rewritten Query Builder tests using _internal.monitor
* chore: yarn prettier
* fix: add missing custom window period
* fix: remove it.only
* Add flux-enable to a workflow file
* fix: github actions workflow file flux-enabled
* fix: force restart by deleing pod
* fix: restart a container to apply a new configmap
* fix: restart container
* chore: flux-enabled is now true by default
* fix: selecting correct elements
* chore: update e2e pipeline
* chore: add scheduled action run once a working day
* chore: remove commented code
* chore: change file extenction to .ts and adjust code accordingly
* chore: pipeline fixes
* chore: clean up e2e:influxdb2 references
* fix: yarn installation, no risky changes in make clean
* chore: update changelog
Co-authored-by: Iszy-Ami <huyiktran@gmail.com>
Co-authored-by: Iszy-Ami <56554624+Iszy-Ami@users.noreply.github.com>
Co-authored-by: Robert Hajek <robert.hajek@gmail.com>
Co-authored-by: Pavel Zavora <pavel.zavora@bonitoo.io>
Co-authored-by: k3yi0 <definitelynotkeyio@gmail.com>
Co-authored-by: k3yi0 <97002262+k3yi0@users.noreply.github.com>
2022-03-25 08:27:29 +00:00
|
|
|
"browserslist": "^4.17.0",
|
2017-07-05 21:03:57 +00:00
|
|
|
"calculate-size": "^1.1.1",
|
2018-03-26 23:23:46 +00:00
|
|
|
"chroma-js": "^1.3.6",
|
2016-09-15 21:53:29 +00:00
|
|
|
"classnames": "^2.2.3",
|
2018-04-13 21:58:47 +00:00
|
|
|
"codemirror": "^5.36.0",
|
2022-02-02 11:42:19 +00:00
|
|
|
"copy-to-clipboard": "^3.3.1",
|
Cypress tests and e2e github action flow (#5896)
* test: welcome test, dashboard test, explore browser test
* test: snapshot testing
* feat: adding testing snapshots
* chore: update unmet peer dependency
* fix: name of dropdown toggle
* test: connecting to influxdb
* fix: remove unnecessary influxdb-onboarding.sh script.
* chore: updated go 1.17.1 for cypress tests
* refactor: remove unnecessary influxdb-onboarding command from Makefile
* refactor: remove unnecessary influxdb-onboarding command from circleci config
* test: initialising database by using environment properties (in Makefile)
* chore: fixing cypress tests
* test: deleting connection to influxd1
* tests: optimize build, reuse workspace
* tests: optimize build
* test: remove unused code
* fix: remove unuse dashboard
* chore(e2e-pipeline): add pipeline for chrono cypress tests
* chore: run action on push
* chore: fix e2e pipeline
* chore: add yarn install
* chore: add log upload
* chore: show logs to see what is going on with chronograf
* chore: fix log cats
* chore: add sleep
* fix: chronograf run command
* chore(ui): regenerate yarn.lock after rebase
* test: welcome test, dashboard test, explore browser test
* test: snapshot testing
* feat: adding testing snapshots
* chore(e2e): local script for influxdb enterprise deployment
* chore(e2e): update cert-manager in actions pipeline
* chore: fix coredns issue
* chore: fix certmanager deployment
* test: welcome test, dashboard test, explore browser test
* test: snapshot testing
* feat: adding testing snapshots
* chore: update unmet peer dependency
* test(cypress): add cypress env, and commands
* test(cypress): add basic InfluxDB setup connection test
* fix: temporary commented out the file as it uses non existing functions
* test(cypress): add dashboard create, rename and delelete test
* test(cypress): add routes
* chore: regenerate yarn.lock
* chore: remove unused file
* chore: comment out code
* chore: comment out code
* fix: remove calling non-existent function
* fix: createConnection uses unsafe SSL
* turns on flux
* test(cypress): rewritten Query Builder tests using _internal.monitor
* chore: yarn prettier
* fix: add missing custom window period
* fix: remove it.only
* Add flux-enable to a workflow file
* fix: github actions workflow file flux-enabled
* fix: force restart by deleing pod
* fix: restart a container to apply a new configmap
* fix: restart container
* chore: flux-enabled is now true by default
* fix: selecting correct elements
* chore: update e2e pipeline
* chore: add scheduled action run once a working day
* chore: remove commented code
* chore: change file extenction to .ts and adjust code accordingly
* chore: pipeline fixes
* chore: clean up e2e:influxdb2 references
* fix: yarn installation, no risky changes in make clean
* chore: update changelog
Co-authored-by: Iszy-Ami <huyiktran@gmail.com>
Co-authored-by: Iszy-Ami <56554624+Iszy-Ami@users.noreply.github.com>
Co-authored-by: Robert Hajek <robert.hajek@gmail.com>
Co-authored-by: Pavel Zavora <pavel.zavora@bonitoo.io>
Co-authored-by: k3yi0 <definitelynotkeyio@gmail.com>
Co-authored-by: k3yi0 <97002262+k3yi0@users.noreply.github.com>
2022-03-25 08:27:29 +00:00
|
|
|
"cypress": "^8.4.1",
|
|
|
|
"cypress-file-upload": "^5.0.8",
|
|
|
|
"cypress-image-snapshot": "^4.0.1",
|
|
|
|
"cypress-pipe": "^2.0.0",
|
|
|
|
"cypress-plugin-tab": "^1.0.5",
|
2022-06-15 09:43:33 +00:00
|
|
|
"cypress-real-events": "^1.7.0",
|
2023-02-24 16:06:55 +00:00
|
|
|
"d3-color": "^3.1.0",
|
2023-02-28 13:56:29 +00:00
|
|
|
"d3-scale": "^4.0.2",
|
2017-12-08 22:33:03 +00:00
|
|
|
"dygraphs": "2.1.0",
|
2018-08-17 21:02:25 +00:00
|
|
|
"encoding-down": "^5.0.4",
|
2022-06-08 10:49:31 +00:00
|
|
|
"eslint-plugin-no-only-tests": "^2.6.0",
|
2017-01-30 16:05:57 +00:00
|
|
|
"fast.js": "^0.1.1",
|
2017-07-10 19:24:41 +00:00
|
|
|
"he": "^1.1.1",
|
2018-08-17 21:02:25 +00:00
|
|
|
"level-js": "^3.0.0",
|
|
|
|
"levelup": "^3.1.1",
|
2019-07-31 16:38:32 +00:00
|
|
|
"lodash": "^4.17.13",
|
2018-09-04 20:39:21 +00:00
|
|
|
"memoize-one": "^4.0.2",
|
2022-07-22 08:20:03 +00:00
|
|
|
"moment": "^2.29.4",
|
2017-10-19 20:20:58 +00:00
|
|
|
"nano-date": "^2.0.1",
|
2020-10-05 06:12:47 +00:00
|
|
|
"papaparse": "^5.3.0",
|
2018-02-27 16:45:38 +00:00
|
|
|
"prop-types": "^15.6.1",
|
2018-07-02 23:18:07 +00:00
|
|
|
"qs": "^6.5.2",
|
2019-07-02 16:05:17 +00:00
|
|
|
"react": "^16.8.6",
|
2016-09-15 21:53:29 +00:00
|
|
|
"react-addons-shallow-compare": "^15.0.2",
|
2021-03-14 20:25:56 +00:00
|
|
|
"react-codemirror2": "^7.2.1",
|
2018-06-05 01:00:03 +00:00
|
|
|
"react-copy-to-clipboard": "^5.0.1",
|
2017-05-08 22:04:21 +00:00
|
|
|
"react-custom-scrollbars": "^4.1.1",
|
2016-09-15 21:53:29 +00:00
|
|
|
"react-dimensions": "^1.2.0",
|
2018-04-05 22:03:56 +00:00
|
|
|
"react-dnd": "^2.6.0",
|
|
|
|
"react-dnd-html5-backend": "^2.6.0",
|
2018-09-14 16:06:33 +00:00
|
|
|
"react-dom": "^16.5.1",
|
2021-03-14 20:16:23 +00:00
|
|
|
"react-grid-layout": "1.2.2",
|
2021-05-11 05:05:57 +00:00
|
|
|
"react-markdown": "^6.0.2",
|
2021-03-15 12:11:09 +00:00
|
|
|
"react-onclickoutside": "^6.10.0",
|
2021-03-12 06:23:47 +00:00
|
|
|
"react-redux": "^7.2.2",
|
2022-02-28 10:15:13 +00:00
|
|
|
"react-resize-detector": "^7.0.0",
|
2017-04-12 22:17:30 +00:00
|
|
|
"react-router": "^3.0.2",
|
2017-04-12 02:35:39 +00:00
|
|
|
"react-router-redux": "^4.0.8",
|
2016-11-11 19:25:34 +00:00
|
|
|
"react-tooltip": "^3.2.1",
|
2018-02-27 22:21:46 +00:00
|
|
|
"react-virtualized": "^9.18.5",
|
2016-09-15 21:53:29 +00:00
|
|
|
"redux": "^3.3.1",
|
2021-03-14 20:05:08 +00:00
|
|
|
"redux-auth-wrapper": "^3.0.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"redux-thunk": "^1.0.3",
|
2018-07-17 22:24:29 +00:00
|
|
|
"reselect": "^3.0.1",
|
2017-03-28 23:20:34 +00:00
|
|
|
"rome": "^2.1.22",
|
2018-02-27 15:37:51 +00:00
|
|
|
"uuid": "^3.2.1"
|
2016-09-09 23:10:54 +00:00
|
|
|
}
|
2018-05-23 18:30:52 +00:00
|
|
|
}
|