chronograf/ui/package.json

142 lines
4.5 KiB
JSON
Raw Normal View History

2016-09-09 23:10:54 +00:00
{
"name": "chronograf-ui",
2022-01-25 18:42:31 +00:00
"version": "1.9.3",
2021-03-16 05:50:32 +00:00
"private": true,
2016-11-11 00:22:04 +00:00
"license": "AGPL-3.0",
"description": "",
"repository": {
"type": "git",
2016-11-08 23:23:42 +00:00
"url": "github:influxdata/chronograf"
2016-09-09 23:10:54 +00:00
},
"scripts": {
"start": "GIT_SHA=$(git rev-parse HEAD) node parcel.js",
"build": "GIT_SHA=$(git rev-parse HEAD) parcel build -d build --log-level 2 --no-source-maps --public-url '' src/index.html",
"clean": "rm -rf ./build/* && rm -rf ./.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",
"lint": "yarn run eslint; yarn run tsc",
"eslint": "eslint src",
"eslint:watch": "esw src --watch --cache",
2018-03-23 18:08:06 +00:00
"eslint:fix": "eslint src --fix",
"tsc": "tsc -p ./tsconfig.json --noEmit --pretty",
"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
},
"author": "",
"devDependencies": {
2021-03-08 10:10:52 +00:00
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.0.0",
2018-05-10 19:11:10 +00:00
"@types/chroma-js": "^1.3.4",
"@types/codemirror": "^0.0.56",
"@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",
"@types/jest": "^26.0.20",
2021-09-29 07:26:22 +00:00
"@types/levelup": "^4.3.3",
"@types/lodash": "^4.14.104",
"@types/node": "^9.4.6",
"@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",
"@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",
"@types/react-dom": "^16.8.4",
2018-04-11 00:20:01 +00:00
"@types/react-router": "^3.0.15",
"@types/react-router-redux": "4",
2018-05-10 19:11:10 +00:00
"@types/react-virtualized": "^9.18.3",
"@types/text-encoding": "^0.0.32",
2018-05-10 19:11:10 +00:00
"@types/uuid": "^3.4.3",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"autoprefixer": "^6.3.1",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^4.1.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",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.8",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-watch": "^7.0.0",
"express": "^4.14.0",
"fake-indexeddb": "^2.0.4",
2018-06-29 23:08:14 +00:00
"http-proxy-middleware": "^0.18.0",
2018-07-09 22:59:20 +00:00
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
2021-03-08 07:49:51 +00:00
"jest-runner-eslint": "^0.10.0",
"node-sass": "^7.0.0",
"parcel": "1.12.3",
"prettier": "^2.2.1",
"sass": "^1.26.3",
"ts-jest": "^26.5.3",
"tslib": "^1.9.0",
2021-03-04 13:59:14 +00:00
"typescript": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"babel-polyfill": "^6.26.0",
2017-08-28 18:58:04 +00:00
"bignumber.js": "^4.0.2",
"calculate-size": "^1.1.1",
2018-03-26 23:23:46 +00:00
"chroma-js": "^1.3.6",
"classnames": "^2.2.3",
2018-04-13 21:58:47 +00:00
"codemirror": "^5.36.0",
"copy-to-clipboard": "^3.3.1",
"d3-color": "^1.2.0",
2018-06-22 20:23:34 +00:00
"d3-scale": "^2.1.0",
2017-12-08 22:33:03 +00:00
"dygraphs": "2.1.0",
"encoding-down": "^5.0.4",
"fast.js": "^0.1.1",
"he": "^1.1.1",
"level-js": "^3.0.0",
"levelup": "^3.1.1",
"lodash": "^4.17.13",
2018-09-04 20:39:21 +00:00
"memoize-one": "^4.0.2",
"moment": "^2.13.0",
"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",
"react": "^16.8.6",
"react-addons-shallow-compare": "^15.0.2",
2021-03-14 20:25:56 +00:00
"react-codemirror2": "^7.2.1",
"react-copy-to-clipboard": "^5.0.1",
"react-custom-scrollbars": "^4.1.1",
"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",
2018-05-14 20:08:51 +00:00
"react-resize-detector": "^2.3.0",
"react-router": "^3.0.2",
"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",
"redux": "^3.3.1",
2021-03-14 20:05:08 +00:00
"redux-auth-wrapper": "^3.0.0",
"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",
"uuid": "^3.2.1"
2016-09-09 23:10:54 +00:00
}
}