mirror of https://github.com/apache/druid.git
177 lines
6.0 KiB
JSON
177 lines
6.0 KiB
JSON
{
|
|
"name": "web-console",
|
|
"version": "0.24.0",
|
|
"description": "A web console for Apache Druid",
|
|
"author": "Apache Druid Developers <dev@druid.apache.org>",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/apache/druid"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "jsdom",
|
|
"moduleNameMapper": {
|
|
"\\.s?css$": "identity-obj-proxy"
|
|
},
|
|
"testMatch": [
|
|
"**/?(*.)+(spec).ts?(x)"
|
|
],
|
|
"snapshotSerializers": [
|
|
"enzyme-to-json/serializer"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>src/setup-tests.ts"
|
|
]
|
|
},
|
|
"prettier": "@awesome-code-style/prettier-config",
|
|
"scripts": {
|
|
"compile": "./script/build",
|
|
"pretest": "./script/build",
|
|
"jest": "jest --config jest.unit.config.js src",
|
|
"test-base": "npm run eslint && npm run sasslint && npm run prettify-check && npm run jest",
|
|
"test": "npm run test-base -- --silent 2>&1",
|
|
"test-ci": "npm run test-base -- --coverage",
|
|
"test-e2e": "jest --config jest.e2e.config.js e2e-tests",
|
|
"codecov": "codecov --disable=gcov -p ..",
|
|
"coverage": "jest --coverage src",
|
|
"update-snapshots": "jest -u --config jest.unit.config.js",
|
|
"autofix": "npm run eslint-fix && npm run sasslint-fix && npm run prettify",
|
|
"eslint": "eslint '{src,e2e-tests}/**/*.ts?(x)'",
|
|
"eslint-fix": "npm run eslint -- --fix",
|
|
"eslint-changed-only": "git diff --diff-filter=ACMR --cached --name-only | grep -E \\.tsx\\?$ | xargs ./node_modules/.bin/eslint",
|
|
"eslint-fix-changed-only": "npm run eslint-changed-only -- --fix",
|
|
"sasslint": "./node_modules/.bin/stylelint 'src/**/*.scss'",
|
|
"sasslint-fix": "npm run sasslint -- --fix",
|
|
"sasslint-changed-only": "git diff --diff-filter=ACMR --name-only | grep -E \\.scss$ | xargs ./node_modules/.bin/stylelint",
|
|
"sasslint-fix-changed-only": "npm run sasslint-changed-only -- --fix",
|
|
"prettify": "prettier --write '{src,e2e-tests}/**/*.{ts,tsx,scss}' './*.js'",
|
|
"prettify-check": "prettier --check '{src,e2e-tests}/**/*.{ts,tsx,scss}' './*.js'",
|
|
"generate-licenses-file": "license-checker --production --json --out licenses.json",
|
|
"check-licenses": "license-checker --production --onlyAllow 'Apache-1.1;Apache-2.0;BSD-2-Clause;BSD-3-Clause;0BSD;MIT;ISC;CC0-1.0' --summary",
|
|
"start": "webpack serve --hot --open"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"volta": {
|
|
"node": "14.19.3",
|
|
"npm": "6.14.16"
|
|
},
|
|
"browserslist": [
|
|
"> 1% and supports es6",
|
|
"last 3 versions and supports es6",
|
|
"Firefox ESR",
|
|
"not dead",
|
|
"not ie 11"
|
|
],
|
|
"dependencies": {
|
|
"@blueprintjs/core": "^4.0.3",
|
|
"@blueprintjs/datetime": "^4.0.3",
|
|
"@blueprintjs/icons": "^4.1.1",
|
|
"@blueprintjs/popover2": "^1.0.3",
|
|
"ace-builds": "^1.4.13",
|
|
"axios": "^0.21.4",
|
|
"classnames": "^2.2.6",
|
|
"copy-to-clipboard": "^3.2.0",
|
|
"core-js": "^3.10.1",
|
|
"d3-array": "^2.3.3",
|
|
"d3-axis": "^1.0.12",
|
|
"d3-scale": "^3.2.0",
|
|
"d3-selection": "^1.4.0",
|
|
"druid-query-toolkit": "^0.14.10",
|
|
"file-saver": "^2.0.2",
|
|
"follow-redirects": "^1.14.7",
|
|
"fontsource-open-sans": "^3.0.9",
|
|
"has-own-prop": "^2.0.0",
|
|
"hjson": "^3.2.1",
|
|
"json-bigint-native": "^1.2.0",
|
|
"lodash.debounce": "^4.0.8",
|
|
"lodash.escape": "^4.0.1",
|
|
"memoize-one": "^5.1.1",
|
|
"numeral": "^2.0.6",
|
|
"path-parse": "^1.0.7",
|
|
"react": "^16.14.0",
|
|
"react-ace": "^9.5.0",
|
|
"react-diff-viewer": "^3.1.1",
|
|
"react-dom": "^16.14.0",
|
|
"react-router": "^5.1.2",
|
|
"react-router-dom": "^5.1.2",
|
|
"react-splitter-layout": "^4.0.0",
|
|
"react-table": "~6.10.3",
|
|
"regenerator-runtime": "^0.13.7",
|
|
"tslib": "^2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@awesome-code-style/eslint-config": "^4.0.0",
|
|
"@awesome-code-style/prettier-config": "^4.0.0",
|
|
"@awesome-code-style/stylelint-config": "^4.0.0",
|
|
"@babel/core": "^7.14.3",
|
|
"@babel/preset-env": "^7.14.4",
|
|
"@testing-library/react": "^8.0.9",
|
|
"@types/classnames": "^2.2.9",
|
|
"@types/d3-array": "^2.0.0",
|
|
"@types/d3-axis": "^1.0.12",
|
|
"@types/d3-scale": "^2.1.1",
|
|
"@types/d3-selection": "^1.4.1",
|
|
"@types/enzyme": "^3.10.3",
|
|
"@types/enzyme-adapter-react-16": "^1.0.5",
|
|
"@types/file-saver": "^2.0.1",
|
|
"@types/hjson": "^2.4.1",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/lodash.debounce": "^4.0.6",
|
|
"@types/lodash.escape": "^4.0.6",
|
|
"@types/memoize-one": "^4.1.1",
|
|
"@types/node": "^12.11.7",
|
|
"@types/numeral": "^0.0.26",
|
|
"@types/react": "^16.14.5",
|
|
"@types/react-dom": "^16.9.12",
|
|
"@types/react-router-dom": "^5.1.0",
|
|
"@types/react-splitter-layout": "^3.0.0",
|
|
"@types/react-table": "6.8.5",
|
|
"@types/uuid": "^7.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.11.0",
|
|
"autoprefixer": "^10.2.6",
|
|
"babel-loader": "^8.2.2",
|
|
"browserslist": "^4.16.6",
|
|
"codecov": "^3.8.2",
|
|
"css-loader": "^5.2.1",
|
|
"enzyme": "^3.10.0",
|
|
"enzyme-adapter-react-16": "^1.15.1",
|
|
"enzyme-to-json": "^3.4.3",
|
|
"eslint": "^8.8.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"eslint-plugin-import": "^2.25.4",
|
|
"eslint-plugin-react": "^7.28.0",
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
"eslint-plugin-unicorn": "^38.0.0",
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
|
"file-loader": "^6.2.0",
|
|
"fs-extra": "^8.1.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^27.5.0",
|
|
"license-checker": "^25.0.1",
|
|
"node-sass": "^5.0.0",
|
|
"playwright-chromium": "^1.18.1",
|
|
"postcss": "^8.3.0",
|
|
"postcss-loader": "^5.3.0",
|
|
"postcss-preset-env": "^6.7.0",
|
|
"prettier": "^2.5.1",
|
|
"sass-loader": "^11.0.1",
|
|
"snarkdown": "^2.0.0",
|
|
"style-loader": "^2.0.0",
|
|
"stylelint": "^13.12.0",
|
|
"ts-jest": "^27.1.3",
|
|
"ts-loader": "^8.1.0",
|
|
"ts-node": "^8.4.1",
|
|
"typescript": "^4.5.5",
|
|
"uuid": "^7.0.2",
|
|
"webpack": "^5.33.2",
|
|
"webpack-bundle-analyzer": "^4.4.1",
|
|
"webpack-cli": "^4.6.0",
|
|
"webpack-dev-server": "^3.11.2"
|
|
}
|
|
}
|