-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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
{
"name": "hnsapi",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"test": "tsx ./node_modules/mocha/bin/mocha.js",
"build": "tsc -p tsconfig.json",
"run": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"format": "prettier --write ."
},
"author": "",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.13",
"@types/chai": "^5.2.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/mocha": "^10.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^25.2.1",
"@types/node-gzip": "^1.1.3",
"@types/sparse-bitfield": "^3.0.4",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.13.4",
"cors": "^2.8.6",
"express": "^5.2.1",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"murmurhash": "^2.0.1",
"murmurhash-native": "^3.5.1",
"node-gzip": "^1.1.2",
"redis": "^5.10.0",
"snappy": "^7.3.3",
"sparse-bitfield": "3.0.3"
}
}