mirror of
https://github.com/apache/superset.git
synced 2026-04-07 18:35:15 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55 lines
1.5 KiB
JSON
55 lines
1.5 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.1.1",
|
|
"hot-shots": "^14.0.0",
|
|
"ioredis": "^5.9.3",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"lodash": "^4.17.23",
|
|
"winston": "^3.19.0",
|
|
"ws": "^8.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.25.1",
|
|
"@types/eslint__js": "^8.42.3",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/lodash": "^4.17.23",
|
|
"@types/node": "^25.2.3",
|
|
"@types/ws": "^8.18.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.55.0",
|
|
"@typescript-eslint/parser": "^8.55.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-lodash": "^8.0.0",
|
|
"globals": "^17.3.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.8.1",
|
|
"ts-jest": "^29.4.6",
|
|
"ts-node": "^10.9.2",
|
|
"tscw-config": "^1.1.2",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.56.0"
|
|
},
|
|
"engines": {
|
|
"node": "^22.22.0",
|
|
"npm": "^10.8.2"
|
|
}
|
|
}
|