-
Notifications
You must be signed in to change notification settings - Fork 14.4k
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
50
51
52
53
{
"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 --ext .js,.jsx,.ts,.tsx",
"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": {
"@types/lodash": "^4.14.202",
"cookie": "^0.6.0",
"hot-shots": "^10.0.0",
"ioredis": "^4.28.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/ioredis": "^4.27.8",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.16",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lodash": "^7.4.0",
"jest": "^27.3.1",
"prettier": "^3.0.3",
"ts-jest": "^27.0.7",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"engines": {
"node": "^16.9.1",
"npm": "^7.5.4 || ^8.1.2"
}
}