forked from CorbinBullard/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"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",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && 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": "^0.5.0",
"hot-shots": "^10.0.0",
"ioredis": "^4.28.0",
"jsonwebtoken": "^9.0.2",
"uuid": "^9.0.1",
"winston": "^3.10.0",
"ws": "^8.14.1"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/ioredis": "^4.27.8",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.6.0",
"@types/uuid": "^9.0.4",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^27.3.1",
"prettier": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"engines": {
"node": "^16.9.1",
"npm": "^7.5.4 || ^8.1.2"
}
}