2016-10-30 09:29:51 +00:00
|
|
|
{
|
2017-01-15 08:13:34 +00:00
|
|
|
"name": "redash-client",
|
2019-09-22 10:23:56 +00:00
|
|
|
"version": "9.0.0-alpha",
|
2016-10-30 09:29:51 +00:00
|
|
|
"description": "The frontend part of Redash.",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2019-11-14 18:23:00 +00:00
|
|
|
"start": "webpack-dev-server",
|
2018-10-14 12:53:39 +00:00
|
|
|
"bundle": "bin/bundle-extensions",
|
2018-10-19 16:04:02 +00:00
|
|
|
"clean": "rm -rf ./client/dist/",
|
2019-12-05 20:41:57 +00:00
|
|
|
"build": "npm run clean && NODE_ENV=production webpack",
|
2019-12-11 12:49:57 +00:00
|
|
|
"build:old-node-version": "npm run clean && NODE_ENV=production node --max-old-space-size=4096 node_modules/.bin/webpack",
|
2018-03-22 15:23:49 +00:00
|
|
|
"watch": "webpack --watch --progress --colors -d",
|
2018-10-19 16:04:02 +00:00
|
|
|
"analyze": "npm run clean && BUNDLE_ANALYZER=on webpack",
|
|
|
|
"analyze:build": "npm run clean && NODE_ENV=production BUNDLE_ANALYZER=on webpack",
|
2019-03-25 20:14:51 +00:00
|
|
|
"lint": "npm run lint:base -- --ext .js --ext .jsx ./client",
|
2019-12-11 10:00:46 +00:00
|
|
|
"lint:fix": "npm run lint:base -- --fix --ext .js --ext .jsx ./client",
|
2019-03-25 20:14:51 +00:00
|
|
|
"lint:base": "eslint --config ./client/.eslintrc.js --ignore-path ./client/.eslintignore",
|
2019-03-26 14:40:26 +00:00
|
|
|
"lint:ci": "npm run lint -- --format junit --output-file /tmp/test-results/eslint/results.xml",
|
2019-12-17 12:52:45 +00:00
|
|
|
"prettier": "prettier --write 'client/app/**/*.{js,jsx}' 'client/cypress/**/*.js'",
|
2019-03-05 09:54:33 +00:00
|
|
|
"test": "TZ=Africa/Khartoum jest",
|
2018-11-07 13:37:08 +00:00
|
|
|
"test:watch": "jest --watch",
|
2019-11-14 18:23:00 +00:00
|
|
|
"cypress:install": "npm install --no-save cypress@~3.6.1 @percy/cypress@^2.2.0 atob@2.1.2",
|
2019-03-24 14:24:59 +00:00
|
|
|
"cypress": "node client/cypress/cypress.js"
|
2016-10-30 09:29:51 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/getredash/redash.git"
|
|
|
|
},
|
2017-10-03 17:21:36 +00:00
|
|
|
"engines": {
|
2019-12-11 10:00:46 +00:00
|
|
|
"node": "^12.0.0",
|
|
|
|
"npm": "^6.0.0"
|
2017-10-03 17:21:36 +00:00
|
|
|
},
|
2016-10-30 09:29:51 +00:00
|
|
|
"author": "Redash Contributors",
|
|
|
|
"license": "BSD-2-Clause",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/getredash/redash/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://redash.io/",
|
|
|
|
"dependencies": {
|
2018-04-30 23:02:06 +00:00
|
|
|
"@types/prop-types": "^15.5.2",
|
|
|
|
"@types/react": "^16.3.13",
|
|
|
|
"@types/react-dom": "^16.0.5",
|
2017-01-02 15:12:32 +00:00
|
|
|
"angular": "~1.5.8",
|
2016-11-09 21:55:40 +00:00
|
|
|
"angular-resizable": "^1.2.0",
|
2017-06-19 20:26:06 +00:00
|
|
|
"angular-resource": "~1.5.8",
|
|
|
|
"angular-route": "~1.5.8",
|
|
|
|
"angular-sanitize": "~1.5.8",
|
2017-10-03 17:21:36 +00:00
|
|
|
"angular-ui-bootstrap": "^2.5.0",
|
2016-11-13 12:03:32 +00:00
|
|
|
"angular-vs-repeat": "^1.1.7",
|
2019-04-30 13:34:00 +00:00
|
|
|
"angular2react": "^3.0.2",
|
2019-07-26 19:40:13 +00:00
|
|
|
"antd": "^3.19.7",
|
2019-06-18 06:50:09 +00:00
|
|
|
"beautifymarker": "^1.0.7",
|
2017-11-20 15:46:37 +00:00
|
|
|
"bootstrap": "^3.3.7",
|
2018-10-03 19:25:19 +00:00
|
|
|
"brace": "^0.11.0",
|
2018-03-06 11:33:15 +00:00
|
|
|
"chroma-js": "^1.3.6",
|
2019-01-30 18:21:22 +00:00
|
|
|
"classnames": "^2.2.6",
|
2019-03-10 07:29:44 +00:00
|
|
|
"core-js": "^2.6.4",
|
2016-11-06 12:40:05 +00:00
|
|
|
"d3": "^3.5.17",
|
2017-10-03 17:21:36 +00:00
|
|
|
"d3-cloud": "^1.2.4",
|
|
|
|
"debug": "^3.1.0",
|
2016-10-30 13:52:46 +00:00
|
|
|
"font-awesome": "^4.7.0",
|
2019-02-05 19:13:32 +00:00
|
|
|
"hoist-non-react-statics": "^3.3.0",
|
2017-10-03 17:21:36 +00:00
|
|
|
"jquery": "^3.2.1",
|
|
|
|
"leaflet": "^1.2.0",
|
2018-04-06 16:58:55 +00:00
|
|
|
"leaflet-fullscreen": "^1.0.2",
|
2018-07-25 11:58:16 +00:00
|
|
|
"leaflet.markercluster": "^1.1.0",
|
2018-04-30 23:02:06 +00:00
|
|
|
"lodash": "^4.17.10",
|
2017-09-22 18:08:07 +00:00
|
|
|
"markdown": "0.5.0",
|
2016-10-30 13:52:46 +00:00
|
|
|
"material-design-iconic-font": "^2.2.0",
|
2017-12-02 11:03:19 +00:00
|
|
|
"moment": "^2.19.3",
|
2017-10-03 17:21:36 +00:00
|
|
|
"mousetrap": "^1.6.1",
|
|
|
|
"mustache": "^2.3.0",
|
2017-11-30 22:02:37 +00:00
|
|
|
"numeral": "^2.0.6",
|
2016-11-28 07:51:51 +00:00
|
|
|
"pace-progress": "git+https://github.com/getredash/pace.git",
|
2018-10-11 08:23:40 +00:00
|
|
|
"plotly.js": "1.41.3",
|
2018-04-30 23:02:06 +00:00
|
|
|
"prop-types": "^15.6.1",
|
2019-02-28 13:07:57 +00:00
|
|
|
"react": "^16.8.3",
|
2018-10-03 19:25:19 +00:00
|
|
|
"react-ace": "^6.1.0",
|
2019-02-28 13:07:57 +00:00
|
|
|
"react-dom": "^16.8.3",
|
2019-05-16 12:43:46 +00:00
|
|
|
"react-grid-layout": "git+https://github.com/getredash/react-grid-layout.git",
|
2019-09-22 07:46:04 +00:00
|
|
|
"react-pivottable": "^0.9.0",
|
2019-09-30 16:12:27 +00:00
|
|
|
"react-sortable-hoc": "^1.10.1",
|
2018-04-30 23:02:06 +00:00
|
|
|
"react2angular": "^3.2.1",
|
2019-09-16 10:01:48 +00:00
|
|
|
"tinycolor2": "^1.4.1",
|
2019-10-19 19:28:57 +00:00
|
|
|
"ui-select": "^0.19.8",
|
|
|
|
"use-debounce": "^3.1.0"
|
2016-10-30 09:29:51 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-03-10 07:29:44 +00:00
|
|
|
"@babel/core": "^7.2.2",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.3.0",
|
|
|
|
"@babel/plugin-transform-object-assign": "^7.2.0",
|
|
|
|
"@babel/preset-env": "^7.3.1",
|
|
|
|
"@babel/preset-react": "^7.0.0",
|
2019-12-11 10:00:46 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.10.0",
|
|
|
|
"@typescript-eslint/parser": "^2.10.0",
|
|
|
|
"babel-eslint": "^10.0.3",
|
2019-03-10 07:29:44 +00:00
|
|
|
"babel-jest": "^24.1.0",
|
|
|
|
"babel-loader": "^8.0.5",
|
2017-10-03 17:21:36 +00:00
|
|
|
"babel-plugin-angularjs-annotate": "^0.8.2",
|
2018-01-03 12:00:34 +00:00
|
|
|
"babel-plugin-transform-builtin-extend": "^1.1.2",
|
2018-10-18 18:21:47 +00:00
|
|
|
"copy-webpack-plugin": "^4.5.3",
|
2017-10-03 17:21:36 +00:00
|
|
|
"css-loader": "^0.28.7",
|
2019-01-13 13:26:44 +00:00
|
|
|
"enzyme": "^3.8.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.7.1",
|
|
|
|
"enzyme-to-json": "^3.3.5",
|
2019-12-11 10:00:46 +00:00
|
|
|
"eslint": "^6.7.2",
|
|
|
|
"eslint-config-prettier": "^6.7.0",
|
|
|
|
"eslint-config-react-app": "^5.1.0",
|
|
|
|
"eslint-loader": "^3.0.3",
|
|
|
|
"eslint-plugin-chai-friendly": "^0.5.0",
|
|
|
|
"eslint-plugin-compat": "^3.3.0",
|
2018-11-07 13:37:08 +00:00
|
|
|
"eslint-plugin-cypress": "^2.0.1",
|
2019-12-11 10:00:46 +00:00
|
|
|
"eslint-plugin-flowtype": "^3.13.0",
|
|
|
|
"eslint-plugin-import": "^2.18.2",
|
2019-03-10 07:29:44 +00:00
|
|
|
"eslint-plugin-jest": "^22.2.2",
|
2019-12-11 10:00:46 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
|
|
"eslint-plugin-no-only-tests": "^2.4.0",
|
|
|
|
"eslint-plugin-react": "^7.17.0",
|
|
|
|
"eslint-plugin-react-hooks": "^1.7.0",
|
2018-10-18 18:21:47 +00:00
|
|
|
"file-loader": "^2.0.0",
|
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2019-01-13 13:26:44 +00:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2019-03-10 07:29:44 +00:00
|
|
|
"jest": "^24.1.0",
|
2019-03-10 11:35:27 +00:00
|
|
|
"less": "^3.9.0",
|
2018-10-18 18:21:47 +00:00
|
|
|
"less-loader": "^4.1.0",
|
2017-11-07 08:41:29 +00:00
|
|
|
"less-plugin-autoprefix": "^1.5.1",
|
2018-10-18 18:21:47 +00:00
|
|
|
"mini-css-extract-plugin": "^0.4.4",
|
2019-01-13 13:26:44 +00:00
|
|
|
"mockdate": "^2.0.2",
|
2019-12-11 10:00:46 +00:00
|
|
|
"prettier": "^1.19.1",
|
2017-01-24 07:54:28 +00:00
|
|
|
"raw-loader": "^0.5.1",
|
2018-10-19 16:04:02 +00:00
|
|
|
"react-test-renderer": "^16.5.2",
|
2018-11-07 13:37:08 +00:00
|
|
|
"request": "^2.88.0",
|
2019-03-10 11:35:27 +00:00
|
|
|
"url-loader": "^1.1.2",
|
2018-10-18 18:21:47 +00:00
|
|
|
"webpack": "^4.20.2",
|
2018-12-30 17:37:42 +00:00
|
|
|
"webpack-build-notifier": "^0.1.30",
|
2018-03-22 15:23:49 +00:00
|
|
|
"webpack-bundle-analyzer": "^2.11.1",
|
2018-10-18 18:21:47 +00:00
|
|
|
"webpack-cli": "^3.1.2",
|
|
|
|
"webpack-dev-server": "^3.1.9",
|
|
|
|
"webpack-manifest-plugin": "^2.0.4"
|
2018-07-24 09:01:03 +00:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2019-07-04 12:43:43 +00:00
|
|
|
"fsevents": "^1.2.9"
|
2019-01-13 13:26:44 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"setupFiles": [
|
|
|
|
"./client/app/__tests__/enzyme_setup.js",
|
|
|
|
"./client/app/__tests__/mocks.js"
|
|
|
|
],
|
|
|
|
"snapshotSerializers": [
|
|
|
|
"enzyme-to-json/serializer"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
|
|
|
"^@/(.*)": "<rootDir>/client/app/$1",
|
|
|
|
"\\.(css|less)$": "identity-obj-proxy"
|
|
|
|
},
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"<rootDir>/client/app/__tests__/"
|
|
|
|
]
|
2019-02-05 14:16:49 +00:00
|
|
|
},
|
2019-03-27 15:47:12 +00:00
|
|
|
"//": "browserslist set to 'Async functions' compatibility",
|
|
|
|
"browserslist": [
|
|
|
|
"Edge >= 15",
|
|
|
|
"Firefox >= 52",
|
|
|
|
"Chrome >= 55",
|
|
|
|
"Safari >= 10.1",
|
|
|
|
"iOS >= 10.3",
|
|
|
|
"Opera >= 42",
|
|
|
|
"op_mob >= 46",
|
|
|
|
"android >= 67",
|
|
|
|
"and_chr >= 71",
|
|
|
|
"and_ff >= 64",
|
|
|
|
"and_uc >= 11.8",
|
|
|
|
"samsung >= 6.2"
|
|
|
|
]
|
2016-10-30 09:29:51 +00:00
|
|
|
}
|