-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "kademlia-p2p-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "commonjs",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"start": "npx ts-node src/index.ts",
"start:dev": "npx ts-node ./src/simulation.ts",
"format:check:staged": "lint-staged",
"format:check": "biome format .",
"format:write": "biome format . --write",
"lint": "biome lint .",
"prepare": "husky install",
"test": "vitest run --pool=forks"
},
"keywords": ["kademlia", "p2p", "dht", "ws"],
"author": "zeroExBingbong",
"license": "ISC",
"dependencies": {
"@types/ws": "^8.5.12",
"axios": "^1.6.0",
"bignumber.js": "^9.1.2",
"body-parser": "^1.20.2",
"chalk": "4.1.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^5.0.0-alpha.8",
"express-http-context": "^1.2.4",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"ioredis": "^5.4.1",
"mathjs": "^13.1.1",
"msgpack5": "^6.0.2",
"msgpackr": "^1.11.2",
"node-cron": "^3.0.3",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"tslib": "^2.8.1",
"uuid": "^10.0.0",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^1.4.0",
"winston": "^3.9.0",
"winston-transport": "^4.7.1",
"ws": "^8.18.0",
"zod": "^3.22.3"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/hpp": "^0.2.6",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.9",
"@types/node-cron": "^3.0.11",
"husky": "7.0.0",
"jest": "29.7.0",
"jest-mock-extended": "3.0.7",
"lint-staged": "^15.2.9",
"ts-jest": "^29.2.4",
"typescript": "^5.1.3",
"cross-spawn": ">=7.0.5",
"cookie": ">=0.7.0"
},
"engines": {
"node": "^18.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}