mirror of
https://github.com/apache/superset.git
synced 2026-09-01 13:01:33 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "superset-websocket",
|
|
"version": "0.0.1",
|
|
"description": "Websocket sidecar application for Superset",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node dist/index.js start",
|
|
"test": "npx vitest --run --dir spec",
|
|
"type": "tsc --noEmit",
|
|
"eslint": "eslint",
|
|
"lint": "npm run eslint -- . && npm run type",
|
|
"dev-server": "npm run build && npm run start",
|
|
"build": "tsc",
|
|
"format": "oxfmt --write .",
|
|
"format-check": "oxfmt --check ."
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"cookie": "^2.0.1",
|
|
"hot-shots": "^17.1.0",
|
|
"ioredis": "^6.0.0",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"lodash-es": "^4.18.1",
|
|
"winston": "^3.19.0",
|
|
"ws": "^8.21.3"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.25.1",
|
|
"@types/eslint__js": "^8.42.3",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/node": "^26.2.0",
|
|
"@types/ws": "^8.18.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.67.0",
|
|
"@typescript-eslint/parser": "^8.67.0",
|
|
"eslint": "^10.8.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"globals": "^17.11.0",
|
|
"oxfmt": "^0.64.0",
|
|
"tscw-config": "^1.1.2",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.67.0",
|
|
"vitest": "^4.1.11"
|
|
},
|
|
"engines": {
|
|
"node": "^24.16.0",
|
|
"npm": "^11.13.0"
|
|
}
|
|
}
|