mirror of
https://github.com/apache/superset.git
synced 2026-04-07 10:31:50 +00:00
420 lines
18 KiB
JSON
420 lines
18 KiB
JSON
{
|
|
"name": "superset",
|
|
"version": "0.0.0-dev",
|
|
"description": "Superset is a data exploration platform designed to be visual, intuitive, and interactive.",
|
|
"keywords": [
|
|
"big",
|
|
"data",
|
|
"exploratory",
|
|
"analysis",
|
|
"react",
|
|
"d3",
|
|
"airbnb",
|
|
"nerds",
|
|
"database",
|
|
"flask"
|
|
],
|
|
"homepage": "https://superset.apache.org/",
|
|
"bugs": {
|
|
"url": "https://github.com/apache/superset/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/apache/superset.git",
|
|
"directory": "superset-frontend"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": {
|
|
"name": "Apache"
|
|
},
|
|
"directories": {
|
|
"doc": "docs",
|
|
"test": "spec"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"plugins/*",
|
|
"src/setup/*"
|
|
],
|
|
"scripts": {
|
|
"_prettier": "prettier './({src,spec,cypress-base,plugins,packages,.storybook}/**/*{.js,.jsx,.ts,.tsx,.css,.scss,.sass}|package.json)'",
|
|
"build": "cross-env NODE_OPTIONS=--max_old_space_size=8192 NODE_ENV=production BABEL_ENV=\"${BABEL_ENV:=production}\" webpack --color --mode production",
|
|
"build-dev": "cross-env NODE_OPTIONS=--max_old_space_size=8192 NODE_ENV=development webpack --mode=development --color",
|
|
"build-instrumented": "cross-env NODE_ENV=production BABEL_ENV=instrumented webpack --mode=production --color",
|
|
"build-storybook": "storybook build",
|
|
"build-translation": "scripts/po2json.sh",
|
|
"bundle-stats": "cross-env BUNDLE_ANALYZER=true npm run build && npx open-cli ../superset/static/stats/statistics.html",
|
|
"clear-npm": "mkdir -p /tmp/empty && rsync -a --delete /tmp/empty/ node_modules/ && rmdir node_modules /tmp/empty",
|
|
"core:cover": "cross-env NODE_ENV=test NODE_OPTIONS=\"--max-old-space-size=4096\" jest --coverage --coverageThreshold='{\"global\":{\"statements\":100,\"branches\":100,\"functions\":100,\"lines\":100}}' --collectCoverageFrom='[\"packages/**/src/**/*.{js,ts}\", \"!packages/superset-core/**/*\"]' packages",
|
|
"cover": "cross-env NODE_ENV=test NODE_OPTIONS=\"--max-old-space-size=4096\" jest --coverage",
|
|
"dev": "webpack --mode=development --color --watch",
|
|
"dev-server": "cross-env NODE_ENV=development BABEL_ENV=development node --max_old_space_size=4096 ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode=development",
|
|
"format": "npm run _prettier -- --write",
|
|
"eslint": "npm run lint",
|
|
"lint": "npx oxlint --config oxlint.json --quiet",
|
|
"lint:all": "npx oxlint --config oxlint.json && npm run type",
|
|
"lint-fix": "npx oxlint --config oxlint.json --fix --quiet",
|
|
"lint-fix:all": "npx oxlint --config oxlint.json --fix",
|
|
"lint:full": "npm run lint && npm run check:custom-rules",
|
|
"check:custom-rules": "node scripts/check-custom-rules.js",
|
|
"check:storybook-coverage": "node scripts/check-storybook-coverage.js",
|
|
"ensure-oxc": "echo 'OXC linter is ready' && npx oxlint --version",
|
|
"lint-stats": "node ./scripts/oxlint-metrics-uploader.js",
|
|
"plugins:build": "node ./scripts/build.js",
|
|
"plugins:build-assets": "node ./scripts/copyAssets.js",
|
|
"plugins:create-conventional-version": "npm run prune && lerna version --conventional-commits --create-release github --no-private --yes --tag-version-prefix=\"plugins-and-packages-v\"",
|
|
"plugins:create-minor-version": "npm run prune && lerna version minor --no-private --yes --tag-version-prefix=\"plugins-and-packages-v\"",
|
|
"plugins:create-patch-version": "npm run prune && lerna version patch --no-private --yes --tag-version-prefix=\"plugins-and-packages-v\"",
|
|
"plugins:publish-all": "npm run prune && npm run plugins:build && lerna publish from-package --force-publish --yes",
|
|
"plugins:release-conventional": "npm run prune && npm run plugins:build && lerna publish --conventional-commits --create-release github --yes",
|
|
"plugins:release-from-tag": "npm run prune && npm run plugins:build && lerna publish from-package --yes",
|
|
"playwright:test": "playwright test",
|
|
"playwright:ui": "playwright test --ui",
|
|
"playwright:headed": "playwright test --headed",
|
|
"playwright:debug": "playwright test --debug",
|
|
"playwright:report": "playwright show-report",
|
|
"docs:screenshots": "playwright test --config=playwright/generators/playwright.config.ts docs/",
|
|
"prettier": "npm run _prettier -- --write",
|
|
"prettier-check": "npm run _prettier -- --check",
|
|
"prod": "npm run build",
|
|
"prune": "rm -rf ./{packages,plugins}/*/{node_modules,lib,esm,tsconfig.tsbuildinfo,package-lock.json} ./.temp_cache",
|
|
"storybook": "cross-env NODE_ENV=development BABEL_ENV=development storybook dev -p 6006",
|
|
"test-storybook": "test-storybook",
|
|
"test-storybook:ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npx http-server storybook-static --port 6006 --silent\" \"npx wait-on tcp:127.0.0.1:6006 && npm run test-storybook -- --maxWorkers=2\"",
|
|
"tdd": "cross-env NODE_ENV=test NODE_OPTIONS=\"--max-old-space-size=8192\" jest --watch",
|
|
"test": "cross-env NODE_ENV=test NODE_OPTIONS=\"--max-old-space-size=8192\" jest --max-workers=80% --silent",
|
|
"test-loud": "cross-env NODE_ENV=test NODE_OPTIONS=\"--max-old-space-size=8192\" jest --max-workers=80%",
|
|
"type": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" tsc --noEmit",
|
|
"update-maps": "cd plugins/legacy-plugin-chart-country-map/scripts && jupyter nbconvert --to notebook --execute --inplace --allow-errors --ExecutePreprocessor.timeout=1200 'Country Map GeoJSON Generator.ipynb'",
|
|
"validate-release": "../RELEASING/validate_this_release.sh"
|
|
},
|
|
"browserslist": [
|
|
"last 3 chrome versions",
|
|
"last 3 firefox versions",
|
|
"last 3 safari versions",
|
|
"last 3 edge versions"
|
|
],
|
|
"dependencies": {
|
|
"@apache-superset/core": "file:packages/superset-core",
|
|
"@deck.gl/aggregation-layers": "~9.2.5",
|
|
"@deck.gl/core": "~9.2.5",
|
|
"@deck.gl/extensions": "~9.2.5",
|
|
"@deck.gl/geo-layers": "~9.2.5",
|
|
"@deck.gl/layers": "~9.2.5",
|
|
"@deck.gl/mesh-layers": "~9.2.5",
|
|
"@deck.gl/react": "~9.2.5",
|
|
"@dnd-kit/core": "^6.3.1",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"@emotion/cache": "^11.4.0",
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.1",
|
|
"@fontsource/ibm-plex-mono": "^5.2.7",
|
|
"@luma.gl/constants": "~9.2.5",
|
|
"@luma.gl/core": "~9.2.5",
|
|
"@luma.gl/engine": "~9.2.5",
|
|
"@luma.gl/gltf": "~9.2.5",
|
|
"@luma.gl/shadertools": "~9.2.5",
|
|
"@luma.gl/webgl": "~9.2.5",
|
|
"@reduxjs/toolkit": "^1.9.3",
|
|
"@rjsf/core": "^5.24.13",
|
|
"@rjsf/utils": "^5.24.3",
|
|
"@rjsf/validator-ajv8": "^5.24.13",
|
|
"@scarf/scarf": "^1.4.0",
|
|
"@superset-ui/chart-controls": "file:./packages/superset-ui-chart-controls",
|
|
"@superset-ui/core": "file:./packages/superset-ui-core",
|
|
"@superset-ui/legacy-plugin-chart-calendar": "file:./plugins/legacy-plugin-chart-calendar",
|
|
"@superset-ui/legacy-plugin-chart-chord": "file:./plugins/legacy-plugin-chart-chord",
|
|
"@superset-ui/legacy-plugin-chart-country-map": "file:./plugins/legacy-plugin-chart-country-map",
|
|
"@superset-ui/legacy-plugin-chart-horizon": "file:./plugins/legacy-plugin-chart-horizon",
|
|
"@superset-ui/legacy-plugin-chart-map-box": "file:./plugins/legacy-plugin-chart-map-box",
|
|
"@superset-ui/legacy-plugin-chart-paired-t-test": "file:./plugins/legacy-plugin-chart-paired-t-test",
|
|
"@superset-ui/legacy-plugin-chart-parallel-coordinates": "file:./plugins/legacy-plugin-chart-parallel-coordinates",
|
|
"@superset-ui/legacy-plugin-chart-partition": "file:./plugins/legacy-plugin-chart-partition",
|
|
"@superset-ui/legacy-plugin-chart-rose": "file:./plugins/legacy-plugin-chart-rose",
|
|
"@superset-ui/legacy-plugin-chart-world-map": "file:./plugins/legacy-plugin-chart-world-map",
|
|
"@superset-ui/legacy-preset-chart-deckgl": "file:./plugins/legacy-preset-chart-deckgl",
|
|
"@superset-ui/legacy-preset-chart-nvd3": "file:./plugins/legacy-preset-chart-nvd3",
|
|
"@superset-ui/plugin-chart-ag-grid-table": "file:./plugins/plugin-chart-ag-grid-table",
|
|
"@superset-ui/plugin-chart-cartodiagram": "file:./plugins/plugin-chart-cartodiagram",
|
|
"@superset-ui/plugin-chart-echarts": "file:./plugins/plugin-chart-echarts",
|
|
"@superset-ui/plugin-chart-handlebars": "file:./plugins/plugin-chart-handlebars",
|
|
"@superset-ui/plugin-chart-pivot-table": "file:./plugins/plugin-chart-pivot-table",
|
|
"@superset-ui/plugin-chart-table": "file:./plugins/plugin-chart-table",
|
|
"@superset-ui/plugin-chart-word-cloud": "file:./plugins/plugin-chart-word-cloud",
|
|
"@superset-ui/switchboard": "file:./packages/superset-ui-switchboard",
|
|
"@types/d3-format": "^3.0.1",
|
|
"@types/d3-selection": "^3.0.11",
|
|
"@types/d3-time-format": "^4.0.3",
|
|
"@types/react-google-recaptcha": "^2.1.9",
|
|
"@visx/axis": "^3.8.0",
|
|
"@visx/grid": "^3.5.0",
|
|
"@visx/responsive": "^3.0.0",
|
|
"@visx/scale": "^3.5.0",
|
|
"@visx/tooltip": "^3.0.0",
|
|
"@visx/xychart": "^3.5.1",
|
|
"ag-grid-community": "35.0.1",
|
|
"ag-grid-react": "35.0.1",
|
|
"antd": "^5.26.0",
|
|
"chrono-node": "^2.9.0",
|
|
"classnames": "^2.2.5",
|
|
"content-disposition": "^1.0.1",
|
|
"d3-color": "^3.1.0",
|
|
"d3-scale": "^4.0.2",
|
|
"dayjs": "^1.11.19",
|
|
"dom-to-image-more": "^3.7.2",
|
|
"dom-to-pdf": "^0.3.2",
|
|
"echarts": "^5.6.0",
|
|
"fast-glob": "^3.3.2",
|
|
"fs-extra": "^11.3.3",
|
|
"fuse.js": "^7.1.0",
|
|
"geolib": "^3.3.4",
|
|
"geostyler": "^14.1.3",
|
|
"geostyler-data": "^1.1.0",
|
|
"geostyler-openlayers-parser": "^4.3.0",
|
|
"geostyler-style": "7.5.0",
|
|
"geostyler-wfs-parser": "^2.0.3",
|
|
"googleapis": "^171.4.0",
|
|
"immer": "^11.1.4",
|
|
"interweave": "^13.1.1",
|
|
"jquery": "^4.0.0",
|
|
"js-levenshtein": "^1.1.6",
|
|
"json-bigint": "^1.0.0",
|
|
"json-stringify-pretty-compact": "^2.0.0",
|
|
"lodash": "^4.17.23",
|
|
"mapbox-gl": "^3.18.1",
|
|
"markdown-to-jsx": "^9.7.4",
|
|
"match-sorter": "^6.3.4",
|
|
"memoize-one": "^5.2.1",
|
|
"pretty-ms": "^9.3.0",
|
|
"mousetrap": "^1.6.5",
|
|
"mustache": "^4.2.0",
|
|
"nanoid": "^5.1.6",
|
|
"ol": "^7.5.2",
|
|
"query-string": "9.3.1",
|
|
"re-resizable": "^6.11.2",
|
|
"react": "^17.0.2",
|
|
"react-arborist": "^3.4.3",
|
|
"react-checkbox-tree": "^1.8.0",
|
|
"react-diff-viewer-continued": "^3.4.0",
|
|
"react-dnd": "^11.1.3",
|
|
"react-dnd-html5-backend": "^11.1.3",
|
|
"react-dom": "^17.0.2",
|
|
"react-google-recaptcha": "^3.1.0",
|
|
"react-intersection-observer": "^10.0.2",
|
|
"react-json-tree": "^0.20.0",
|
|
"react-lines-ellipsis": "^0.16.1",
|
|
"react-loadable": "^5.5.0",
|
|
"react-redux": "^7.2.9",
|
|
"react-resize-detector": "^9.1.1",
|
|
"react-reverse-portal": "^2.3.0",
|
|
"react-router-dom": "^5.3.4",
|
|
"react-search-input": "^0.11.3",
|
|
"react-sortable-hoc": "^2.0.0",
|
|
"react-split": "^2.0.9",
|
|
"react-table": "^7.8.0",
|
|
"react-transition-group": "^4.4.5",
|
|
"react-virtualized-auto-sizer": "^1.0.26",
|
|
"react-window": "^1.8.10",
|
|
"redux": "^4.2.1",
|
|
"redux-localstorage": "^0.4.1",
|
|
"redux-thunk": "^2.1.0",
|
|
"redux-undo": "^1.0.0-beta9-9-7",
|
|
"rison": "^0.1.1",
|
|
"scroll-into-view-if-needed": "^3.1.0",
|
|
"simple-zstd": "^1.4.2",
|
|
"stream-browserify": "^3.0.0",
|
|
"tinycolor2": "^1.4.2",
|
|
"urijs": "^1.19.8",
|
|
"use-event-callback": "^0.1.0",
|
|
"use-immer": "^0.11.0",
|
|
"use-query-params": "^2.2.2",
|
|
"uuid": "^13.0.0",
|
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
|
|
"yargs": "^17.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.28.6",
|
|
"@babel/compat-data": "^7.28.4",
|
|
"@babel/core": "^7.29.0",
|
|
"@babel/eslint-parser": "^7.28.6",
|
|
"@babel/node": "^7.29.0",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
|
|
"@babel/plugin-transform-runtime": "^7.29.0",
|
|
"@babel/preset-env": "^7.29.0",
|
|
"@babel/preset-react": "^7.28.5",
|
|
"@babel/preset-typescript": "^7.28.5",
|
|
"@babel/register": "^7.23.7",
|
|
"@babel/runtime": "^7.28.6",
|
|
"@babel/runtime-corejs3": "^7.29.0",
|
|
"@babel/types": "^7.28.6",
|
|
"@cypress/react": "^8.0.2",
|
|
"@emotion/babel-plugin": "^11.13.5",
|
|
"@emotion/jest": "^11.14.2",
|
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
|
"@mihkeleidast/storybook-addon-source": "^1.0.1",
|
|
"@playwright/test": "^1.58.2",
|
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
|
|
"@storybook/addon-actions": "^8.6.17",
|
|
"@storybook/addon-controls": "^8.6.17",
|
|
"@storybook/addon-essentials": "^8.6.17",
|
|
"@storybook/addon-links": "^8.6.17",
|
|
"@storybook/addon-mdx-gfm": "^8.6.17",
|
|
"@storybook/components": "^8.6.17",
|
|
"@storybook/preview-api": "^8.6.17",
|
|
"@storybook/react": "^8.6.17",
|
|
"@storybook/react-webpack5": "^8.6.17",
|
|
"@storybook/test": "^8.6.15",
|
|
"@storybook/test-runner": "^0.17.0",
|
|
"@svgr/webpack": "^8.1.0",
|
|
"@swc/core": "^1.15.11",
|
|
"@swc/plugin-emotion": "^14.6.0",
|
|
"@swc/plugin-transform-imports": "^12.5.0",
|
|
"@testing-library/dom": "^8.20.1",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^12.1.5",
|
|
"@testing-library/react-hooks": "^8.0.1",
|
|
"@testing-library/user-event": "^12.8.3",
|
|
"@types/content-disposition": "^0.5.9",
|
|
"@types/dom-to-image": "^2.6.7",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/js-levenshtein": "^1.1.3",
|
|
"@types/json-bigint": "^1.0.4",
|
|
"@types/mousetrap": "^1.6.15",
|
|
"@types/node": "^25.2.3",
|
|
"@types/react": "^17.0.83",
|
|
"@types/react-dom": "^17.0.26",
|
|
"@types/react-loadable": "^5.5.11",
|
|
"@types/react-redux": "^7.1.10",
|
|
"@types/react-resizable": "^3.0.8",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"@types/react-transition-group": "^4.4.12",
|
|
"@types/react-window": "^1.8.8",
|
|
"@types/redux-localstorage": "^1.0.8",
|
|
"@types/redux-mock-store": "^1.0.6",
|
|
"@types/rison": "0.1.0",
|
|
"@types/tinycolor2": "^1.4.3",
|
|
"@types/unzipper": "^0.10.11",
|
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
"@typescript-eslint/parser": "^7.18.0",
|
|
"babel-jest": "^30.0.2",
|
|
"babel-loader": "^10.0.0",
|
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
|
|
"babel-plugin-lodash": "^3.3.4",
|
|
"baseline-browser-mapping": "^2.9.19",
|
|
"cheerio": "1.2.0",
|
|
"concurrently": "^9.2.1",
|
|
"copy-webpack-plugin": "^13.0.1",
|
|
"cross-env": "^10.1.0",
|
|
"css-loader": "^7.1.4",
|
|
"css-minimizer-webpack-plugin": "^7.0.4",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^7.2.0",
|
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-cypress": "^3.6.0",
|
|
"eslint-plugin-file-progress": "^1.5.0",
|
|
"eslint-plugin-i18n-strings": "file:eslint-rules/eslint-plugin-i18n-strings",
|
|
"eslint-plugin-icons": "file:eslint-rules/eslint-plugin-icons",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-jest-dom": "^5.5.0",
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
"eslint-plugin-lodash": "^7.4.0",
|
|
"eslint-plugin-prettier": "^5.5.5",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-react-prefer-function-component": "^5.0.0",
|
|
"eslint-plugin-react-you-might-not-need-an-effect": "^0.9.1",
|
|
"eslint-plugin-storybook": "^0.8.0",
|
|
"eslint-plugin-testing-library": "^7.16.0",
|
|
"eslint-plugin-theme-colors": "file:eslint-rules/eslint-plugin-theme-colors",
|
|
"fetch-mock": "^12.6.0",
|
|
"fork-ts-checker-webpack-plugin": "^9.1.0",
|
|
"history": "^5.3.0",
|
|
"html-webpack-plugin": "^5.6.6",
|
|
"http-server": "^14.1.1",
|
|
"imports-loader": "^5.0.0",
|
|
"jest": "^30.2.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"jest-html-reporter": "^4.3.0",
|
|
"jest-websocket-mock": "^2.5.0",
|
|
"js-yaml-loader": "^1.2.2",
|
|
"jsdom": "^28.1.0",
|
|
"lerna": "^8.2.3",
|
|
"lightningcss": "^1.31.1",
|
|
"mini-css-extract-plugin": "^2.10.0",
|
|
"open-cli": "^8.0.0",
|
|
"oxlint": "^1.48.0",
|
|
"po2json": "^0.4.5",
|
|
"prettier": "3.8.1",
|
|
"prettier-plugin-packagejson": "^3.0.0",
|
|
"process": "^0.11.10",
|
|
"react-refresh": "^0.18.0",
|
|
"react-resizable": "^3.1.3",
|
|
"redux-mock-store": "^1.5.4",
|
|
"source-map": "^0.7.6",
|
|
"source-map-support": "^0.5.21",
|
|
"speed-measure-webpack-plugin": "^1.5.0",
|
|
"storybook": "8.6.17",
|
|
"style-loader": "^4.0.0",
|
|
"swc-loader": "^0.2.7",
|
|
"terser-webpack-plugin": "^5.3.16",
|
|
"thread-loader": "^4.0.4",
|
|
"ts-jest": "^29.4.6",
|
|
"tscw-config": "^1.1.2",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "5.4.5",
|
|
"unzipper": "^0.12.3",
|
|
"vm-browserify": "^1.1.2",
|
|
"wait-on": "^9.0.4",
|
|
"webpack": "^5.105.2",
|
|
"webpack-bundle-analyzer": "^5.2.0",
|
|
"webpack-cli": "^6.0.1",
|
|
"webpack-dev-server": "^5.2.3",
|
|
"webpack-manifest-plugin": "^5.0.1",
|
|
"webpack-sources": "^3.3.4",
|
|
"webpack-visualizer-plugin2": "^2.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"ace-builds": "^1.41.0",
|
|
"core-js": "^3.38.1",
|
|
"handlebars": "^4.7.8",
|
|
"react-ace": "^10.1.0",
|
|
"regenerator-runtime": "^0.14.1"
|
|
},
|
|
"engines": {
|
|
"node": "^20.18.1",
|
|
"npm": "^10.8.1"
|
|
},
|
|
"overrides": {
|
|
"core-js": "^3.38.1",
|
|
"puppeteer": "^22.4.1",
|
|
"remark-gfm": "^3.0.1",
|
|
"underscore": "^1.13.7",
|
|
"jspdf": "^4.0.0",
|
|
"nwsapi": "^2.2.13",
|
|
"@deck.gl/aggregation-layers": "~9.2.5",
|
|
"@deck.gl/core": "~9.2.5",
|
|
"@deck.gl/extensions": "~9.2.5",
|
|
"@deck.gl/geo-layers": "~9.2.5",
|
|
"@deck.gl/layers": "~9.2.5",
|
|
"@deck.gl/mesh-layers": "~9.2.5",
|
|
"@deck.gl/react": "~9.2.5",
|
|
"@deck.gl/widgets": "~9.2.5",
|
|
"@luma.gl/constants": "~9.2.5",
|
|
"@luma.gl/core": "~9.2.5",
|
|
"@luma.gl/engine": "~9.2.5",
|
|
"@luma.gl/gltf": "~9.2.5",
|
|
"@luma.gl/shadertools": "~9.2.5",
|
|
"@luma.gl/webgl": "~9.2.5"
|
|
},
|
|
"readme": "ERROR: No README data found!",
|
|
"scarfSettings": {
|
|
"allowTopLevel": true
|
|
},
|
|
"_id": "superset@0.0.0-dev"
|
|
}
|