-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 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
{
"name": "load-balancer",
"version": "1.0.0",
"description": "Implementing a Load Balancer in TypeScript",
"main": "index.js",
"scripts": {
"build": "tsc",
"load-balancer": "nodemon --watch 'src/**/*' -e ts --exec 'ts-node src/load_balancer.ts'",
"first-server": "nodemon --watch 'src/**/*' -e ts --exec 'ts-node src/server1.ts'",
"second-server": "nodemon --watch 'src/**/*' -e ts --exec 'ts-node src/server2.ts'",
"test": "vitest",
"lint": "eslint src --ext .ts"
},
"keywords": [],
"author": "Gerald Kweku Addey",
"license": "ISC",
"devDependencies": {
"@types/http-proxy": "^1.17.14",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-typescript": "^0.14.0",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.1.1"
},
"dependencies": {
"http-proxy": "^1.18.1"
}
}