mirror of https://github.com/apache/druid.git
152 lines
5.2 KiB
JSON
152 lines
5.2 KiB
JSON
{
|
|
"name": "web-console",
|
|
"version": "0.20.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": {
|
|
"trailingComma": "all",
|
|
"tabWidth": 2,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"printWidth": 100,
|
|
"endOfLine": "lf"
|
|
},
|
|
"scripts": {
|
|
"compile": "./script/build",
|
|
"pretest": "./script/build",
|
|
"jest": "jest --config jest.unit.config.js src",
|
|
"test-base": "npm run tslint && npm run sasslint && 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 --detectOpenHandles e2e-tests",
|
|
"codecov": "codecov --disable=gcov -p ..",
|
|
"coverage": "jest --coverage src",
|
|
"update-snapshots": "jest -u",
|
|
"tslint": "./node_modules/.bin/tslint -c tslint.json --project tsconfig.json --formatters-dir ./node_modules/awesome-code-style/formatter '{src,e2e-tests}/**/*.ts?(x)'",
|
|
"tslint-fix": "npm run tslint -- --fix",
|
|
"tslint-changed-only": "git diff --diff-filter=ACMR --cached --name-only | grep -E \\.tsx\\?$ | xargs ./node_modules/.bin/tslint -c tslint.json --project tsconfig.json --formatters-dir ./node_modules/awesome-code-style/formatter",
|
|
"tslint-fix-changed-only": "npm run tslint-changed-only -- --fix",
|
|
"sasslint": "./node_modules/.bin/stylelint --config sasslint.json '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 --config sasslint.json",
|
|
"sasslint-fix-changed-only": "npm run sasslint-changed-only -- --fix",
|
|
"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;MIT;CC0-1.0' --summary",
|
|
"start": "webpack-dev-server --hot --open"
|
|
},
|
|
"dependencies": {
|
|
"@blueprintjs/core": "^3.19.1",
|
|
"@blueprintjs/datetime": "^3.11.0",
|
|
"@blueprintjs/icons": "^3.11.0",
|
|
"axios": "^0.19.0",
|
|
"brace": "^0.11.1",
|
|
"classnames": "^2.2.6",
|
|
"copy-to-clipboard": "^3.2.0",
|
|
"core-js": "^3.3.4",
|
|
"d3-array": "^2.3.3",
|
|
"d3-axis": "^1.0.12",
|
|
"d3-scale": "^3.2.0",
|
|
"d3-selection": "^1.4.0",
|
|
"druid-query-toolkit": "^0.9.15",
|
|
"file-saver": "^2.0.2",
|
|
"has-own-prop": "^2.0.0",
|
|
"hjson": "^3.2.1",
|
|
"lodash.debounce": "^4.0.8",
|
|
"lodash.escape": "^4.0.1",
|
|
"memoize-one": "^5.1.1",
|
|
"numeral": "^2.0.6",
|
|
"react": "^16.11.0",
|
|
"react-ace": "^7.0.2",
|
|
"react-dom": "^16.11.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.3",
|
|
"tslib": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.6.4",
|
|
"@babel/preset-env": "^7.6.3",
|
|
"@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": "^24.0.19",
|
|
"@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.9.11",
|
|
"@types/react-dom": "^16.9.3",
|
|
"@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",
|
|
"autoprefixer": "^9.7.0",
|
|
"awesome-code-style": "^1.4.3",
|
|
"babel-loader": "^8.0.6",
|
|
"codecov": "^3.6.1",
|
|
"css-loader": "^3.2.0",
|
|
"enzyme": "^3.10.0",
|
|
"enzyme-adapter-react-16": "^1.15.1",
|
|
"enzyme-to-json": "^3.4.3",
|
|
"fs-extra": "^8.1.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"ignore-styles": "^5.0.1",
|
|
"jest": "^24.9.0",
|
|
"license-checker": "^25.0.1",
|
|
"node-sass": "^4.13.1",
|
|
"node-sass-chokidar": "^1.4.0",
|
|
"playwright-chromium": "^0.11.1",
|
|
"postcss-cli": "^6.1.3",
|
|
"postcss-loader": "^3.0.0",
|
|
"postcss-preset-env": "^6.7.0",
|
|
"sass-loader": "^8.0.0",
|
|
"style-loader": "^1.0.0",
|
|
"stylelint": "^11.1.1",
|
|
"stylelint-config-recommended-scss": "^4.0.0",
|
|
"stylelint-scss": "^3.12.0",
|
|
"stylus": "^0.54.7",
|
|
"ts-jest": "^24.1.0",
|
|
"ts-loader": "^6.2.1",
|
|
"ts-node": "^8.4.1",
|
|
"tslint": "^5.20.0",
|
|
"tslint-loader": "^3.5.4",
|
|
"typescript": "^3.7.2",
|
|
"uuid": "^7.0.2",
|
|
"webpack": "^4.41.2",
|
|
"webpack-bundle-analyzer": "^3.6.0",
|
|
"webpack-cli": "^3.3.9",
|
|
"webpack-dev-server": "^3.9.0"
|
|
}
|
|
}
|