mirror of
https://github.com/apache/superset.git
synced 2026-07-11 17:25:31 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: hainenber <dotronghai96@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com> Co-authored-by: hainenber <dotronghai96@gmail.com>
52 lines
1.4 KiB
JSON
52 lines
1.4 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",
|
|
"prettier-check": "prettier --check .",
|
|
"prettier-write": "prettier --write .",
|
|
"format": "prettier --write ."
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"cookie": "^2.0.1",
|
|
"hot-shots": "^16.0.0",
|
|
"ioredis": "^5.11.1",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"lodash-es": "^4.18.1",
|
|
"winston": "^3.19.0",
|
|
"ws": "^8.21.0"
|
|
},
|
|
"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.1.0",
|
|
"@types/ws": "^8.18.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.62.0",
|
|
"@typescript-eslint/parser": "^8.62.0",
|
|
"eslint": "^10.5.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"globals": "^17.6.0",
|
|
"prettier": "^3.9.4",
|
|
"tscw-config": "^1.1.2",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.62.1",
|
|
"vitest": "^4.1.5"
|
|
},
|
|
"engines": {
|
|
"node": "^24.16.0",
|
|
"npm": "^11.13.0"
|
|
}
|
|
}
|