Files
superset2/superset-websocket/package.json
dependabot[bot] ea76d0d785 chore(deps): bump cookie from 1.1.1 to 2.0.1 in /superset-websocket (#41874)
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>
2026-07-10 12:31:58 +07:00

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"
}
}