mirror of
https://github.com/apache/superset.git
synced 2026-04-07 10:31:50 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "superset-websocket",
|
|
"version": "0.0.1",
|
|
"description": "Websocket sidecar application for Superset",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node dist/index.js start",
|
|
"test": "NODE_ENV=test jest -i spec",
|
|
"type": "tsc --noEmit",
|
|
"eslint": "eslint",
|
|
"lint": "npm run eslint -- . && npm run type",
|
|
"dev-server": "ts-node src/index.ts start",
|
|
"build": "tsc",
|
|
"prettier-check": "prettier --check .",
|
|
"prettier-write": "prettier --write .",
|
|
"format": "prettier --write ."
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"cookie": "^1.0.2",
|
|
"hot-shots": "^11.1.0",
|
|
"ioredis": "^5.6.1",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"lodash": "^4.17.21",
|
|
"uuid": "^11.1.0",
|
|
"winston": "^3.17.0",
|
|
"ws": "^8.18.3"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.25.1",
|
|
"@types/eslint__js": "^8.42.3",
|
|
"@types/ioredis": "^4.27.8",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/lodash": "^4.17.20",
|
|
"@types/node": "^24.2.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"@types/ws": "^8.18.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.26.0",
|
|
"@typescript-eslint/parser": "^8.42.0",
|
|
"eslint": "^9.34.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-lodash": "^8.0.0",
|
|
"globals": "^16.3.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.6.2",
|
|
"ts-jest": "^29.4.1",
|
|
"ts-node": "^10.9.2",
|
|
"tscw-config": "^1.1.2",
|
|
"typescript": "^5.7.3",
|
|
"typescript-eslint": "^8.19.0"
|
|
},
|
|
"engines": {
|
|
"node": "^20.19.4",
|
|
"npm": "^10.8.2"
|
|
}
|
|
}
|