2016-09-09 23:10:54 +00:00
|
|
|
{
|
2016-09-15 21:53:29 +00:00
|
|
|
"name": "chronograf-ui",
|
2018-03-09 02:54:45 +00:00
|
|
|
"version": "1.4.2-3",
|
2016-11-08 23:23:42 +00:00
|
|
|
"private": false,
|
2016-11-11 00:22:04 +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
|
|
|
},
|
|
|
|
"scripts": {
|
2018-02-26 05:49:50 +00:00
|
|
|
"build": "yarn run clean && webpack --config ./webpack/prod.config.js",
|
|
|
|
"build:dev": "webpack --config ./webpack/dev.config.js",
|
2018-02-26 04:45:46 +00:00
|
|
|
"build:vendor": "webpack --config webpack/vendor.config.js",
|
2018-02-26 05:49:50 +00:00
|
|
|
"start": "yarn run clean && yarn run build:vendor && webpack --watch --config ./webpack/dev.config.js",
|
2018-03-01 21:28:47 +00:00
|
|
|
"start:fast": "webpack --watch --config ./webpack/dev.config.js",
|
2018-02-26 05:49:50 +00:00
|
|
|
"start:hmr": "webpack-dev-server --open --config ./webpack/dev.config.js",
|
2017-08-10 20:54:16 +00:00
|
|
|
"lint": "esw src/",
|
2018-03-03 03:50:51 +00:00
|
|
|
"test": "jest",
|
2017-08-07 19:28:23 +00:00
|
|
|
"test:lint": "yarn run lint; yarn run test",
|
2018-02-27 15:38:07 +00:00
|
|
|
"test:watch": "jest --watch",
|
2018-02-26 04:45:46 +00:00
|
|
|
"clean": "rm -rf ./build/*",
|
2018-02-20 15:40:41 +00:00
|
|
|
"prettier": "prettier --single-quote --trailing-comma es5 --bracket-spacing false --semi false --write \"{src,spec}/**/*.js\"; eslint src --fix",
|
|
|
|
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check"
|
2016-09-09 23:10:54 +00:00
|
|
|
},
|
2016-09-15 21:53:29 +00:00
|
|
|
"author": "",
|
2016-09-09 23:10:54 +00:00
|
|
|
"eslintConfig": {
|
2016-09-15 21:53:29 +00:00
|
|
|
"env": {
|
|
|
|
"mocha": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-02-20 08:05:46 +00:00
|
|
|
"@types/chai": "^4.1.2",
|
2018-03-03 03:50:51 +00:00
|
|
|
"@types/enzyme": "^3.1.9",
|
|
|
|
"@types/jest": "^22.1.4",
|
2018-02-20 08:05:46 +00:00
|
|
|
"@types/lodash": "^4.14.104",
|
|
|
|
"@types/node": "^9.4.6",
|
2018-03-02 05:32:53 +00:00
|
|
|
"@types/prop-types": "^15.5.2",
|
2018-02-20 08:05:46 +00:00
|
|
|
"@types/react": "^16.0.38",
|
2016-09-15 21:53:29 +00:00
|
|
|
"autoprefixer": "^6.3.1",
|
|
|
|
"babel-core": "^6.5.1",
|
2016-11-07 23:51:26 +00:00
|
|
|
"babel-eslint": "6.1.2",
|
2018-03-01 15:33:27 +00:00
|
|
|
"babel-jest": "^22.4.1",
|
2018-02-20 02:03:06 +00:00
|
|
|
"babel-loader": "^7.1.2",
|
2016-09-15 21:53:29 +00:00
|
|
|
"babel-plugin-lodash": "^2.0.1",
|
|
|
|
"babel-plugin-syntax-trailing-function-commas": "^6.5.0",
|
|
|
|
"babel-plugin-transform-decorators-legacy": "^1.3.4",
|
2016-10-18 21:02:17 +00:00
|
|
|
"babel-plugin-transform-object-rest-spread": "^6.16.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.2.1",
|
|
|
|
"babel-plugin-transform-runtime": "^6.5.0",
|
2016-09-16 22:31:52 +00:00
|
|
|
"babel-polyfill": "^6.13.0",
|
2018-02-25 17:07:52 +00:00
|
|
|
"babel-preset-env": "^1.6.1",
|
2016-09-15 21:53:29 +00:00
|
|
|
"babel-preset-react": "^6.5.0",
|
2017-01-12 21:59:07 +00:00
|
|
|
"babel-preset-stage-0": "^6.16.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"babel-runtime": "^6.5.0",
|
2018-02-26 01:29:39 +00:00
|
|
|
"compression-webpack-plugin": "^1.1.8",
|
2017-08-10 20:54:16 +00:00
|
|
|
"concurrently": "^3.5.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"core-js": "^2.1.3",
|
|
|
|
"css-loader": "^0.23.1",
|
|
|
|
"envify": "^3.4.0",
|
2018-02-28 17:27:19 +00:00
|
|
|
"enzyme": "^3.3.0",
|
|
|
|
"enzyme-adapter-react-15": "^1.0.5",
|
2017-08-10 20:54:16 +00:00
|
|
|
"eslint": "^3.14.1",
|
2018-02-20 01:58:01 +00:00
|
|
|
"eslint-config-prettier": "^2.9.0",
|
2016-11-07 23:51:26 +00:00
|
|
|
"eslint-loader": "1.6.1",
|
2018-02-27 17:55:24 +00:00
|
|
|
"eslint-plugin-jest": "^21.12.2",
|
2017-07-20 17:12:48 +00:00
|
|
|
"eslint-plugin-prettier": "^2.1.2",
|
2016-11-07 23:51:26 +00:00
|
|
|
"eslint-plugin-react": "6.6.0",
|
2017-08-10 20:54:16 +00:00
|
|
|
"eslint-watch": "^3.1.2",
|
2016-12-27 21:57:23 +00:00
|
|
|
"express": "^4.14.0",
|
2018-02-20 03:51:10 +00:00
|
|
|
"extract-text-webpack-plugin": "^3.0.2",
|
2018-02-20 00:04:38 +00:00
|
|
|
"file-loader": "^1.1.7",
|
2018-02-23 23:33:34 +00:00
|
|
|
"fork-ts-checker-webpack-plugin": "^0.3.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"hanson": "^1.1.1",
|
2018-02-26 05:49:50 +00:00
|
|
|
"html-webpack-include-assets-plugin": "^1.0.2",
|
2018-02-26 01:29:39 +00:00
|
|
|
"html-webpack-plugin": "^2.30.1",
|
2016-09-15 21:53:29 +00:00
|
|
|
"imports-loader": "^0.6.5",
|
2018-02-27 15:38:21 +00:00
|
|
|
"jest": "^22.4.2",
|
2018-02-27 17:55:24 +00:00
|
|
|
"jest-runner-eslint": "^0.4.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"jsdom": "^9.0.0",
|
2018-02-20 03:26:17 +00:00
|
|
|
"json-loader": "^0.5.7",
|
2017-07-06 23:29:59 +00:00
|
|
|
"node-sass": "^4.5.3",
|
2017-11-04 00:33:16 +00:00
|
|
|
"on-build-webpack": "^0.1.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"postcss-browser-reporter": "^0.4.0",
|
|
|
|
"postcss-calc": "^5.2.0",
|
|
|
|
"postcss-loader": "^0.8.0",
|
|
|
|
"postcss-reporter": "^1.3.1",
|
|
|
|
"precss": "^1.4.0",
|
2018-02-20 01:58:01 +00:00
|
|
|
"prettier": "1.5.3",
|
2016-09-15 21:53:29 +00:00
|
|
|
"react-addons-test-utils": "^15.0.2",
|
2018-03-01 15:33:27 +00:00
|
|
|
"react-test-renderer": "^15.6.1",
|
2018-02-20 00:04:38 +00:00
|
|
|
"resolve-url-loader": "^2.2.1",
|
|
|
|
"sass-loader": "^6.0.6",
|
2016-09-15 21:53:29 +00:00
|
|
|
"style-loader": "^0.13.0",
|
2018-03-07 19:05:42 +00:00
|
|
|
"thread-loader": "^1.1.5",
|
2018-03-03 03:50:51 +00:00
|
|
|
"ts-jest": "^22.4.1",
|
2018-02-20 08:05:46 +00:00
|
|
|
"ts-loader": "^3.5.0",
|
|
|
|
"tslib": "^1.9.0",
|
2018-02-26 20:32:50 +00:00
|
|
|
"typescript": "^2.7.2",
|
2018-02-25 15:30:06 +00:00
|
|
|
"uglifyjs-webpack-plugin": "^1.2.2",
|
2018-02-20 03:51:10 +00:00
|
|
|
"webpack": "^3.11.0",
|
2018-02-23 23:33:34 +00:00
|
|
|
"webpack-bundle-analyzer": "^2.10.1",
|
2018-02-20 05:48:28 +00:00
|
|
|
"webpack-dev-server": "^2.11.1"
|
2016-09-15 21:53:29 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2017-08-07 23:42:45 +00:00
|
|
|
"@skidding/react-codemirror": "^1.0.1",
|
2016-09-15 21:53:29 +00:00
|
|
|
"axios": "^0.13.1",
|
2017-08-28 18:58:04 +00:00
|
|
|
"bignumber.js": "^4.0.2",
|
2017-07-05 21:03:57 +00:00
|
|
|
"calculate-size": "^1.1.1",
|
2016-09-15 21:53:29 +00:00
|
|
|
"classnames": "^2.2.3",
|
2017-12-08 22:33:03 +00:00
|
|
|
"dygraphs": "2.1.0",
|
2017-08-15 18:27:29 +00:00
|
|
|
"eslint-plugin-babel": "^4.1.2",
|
2017-01-30 16:05:57 +00:00
|
|
|
"fast.js": "^0.1.1",
|
2016-09-15 21:53:29 +00:00
|
|
|
"fixed-data-table": "^0.6.1",
|
2017-07-10 19:24:41 +00:00
|
|
|
"he": "^1.1.1",
|
2016-09-15 21:53:29 +00:00
|
|
|
"lodash": "^4.3.0",
|
|
|
|
"moment": "^2.13.0",
|
2017-10-19 20:20:58 +00:00
|
|
|
"nano-date": "^2.0.1",
|
2018-02-27 16:45:38 +00:00
|
|
|
"prop-types": "^15.6.1",
|
2017-09-01 21:07:37 +00:00
|
|
|
"query-string": "^5.0.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"react": "^15.0.2",
|
|
|
|
"react-addons-shallow-compare": "^15.0.2",
|
2017-08-07 23:42:45 +00:00
|
|
|
"react-codemirror": "^1.0.0",
|
2017-09-29 19:15:10 +00:00
|
|
|
"react-component-resizable": "^1.1.0-rc1",
|
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",
|
|
|
|
"react-dom": "^15.0.2",
|
2016-10-13 22:10:54 +00:00
|
|
|
"react-grid-layout": "^0.13.9",
|
2016-09-15 21:53:29 +00:00
|
|
|
"react-onclickoutside": "^5.2.0",
|
|
|
|
"react-redux": "^4.4.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",
|
2017-04-12 02:35:39 +00:00
|
|
|
"redux-auth-wrapper": "^1.0.0",
|
2016-09-15 21:53:29 +00:00
|
|
|
"redux-thunk": "^1.0.3",
|
2017-03-28 23:20:34 +00:00
|
|
|
"rome": "^2.1.22",
|
2018-02-27 15:37:51 +00:00
|
|
|
"updeep": "^0.13.0",
|
|
|
|
"uuid": "^3.2.1"
|
2016-09-09 23:10:54 +00:00
|
|
|
}
|
2018-02-25 15:30:06 +00:00
|
|
|
}
|