-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.95 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
{
"name": "elba-balancer",
"version": "0.0.1",
"description": "Load balancer with retries",
"main": "src/main.ts",
"bin": {
"elba": "dist/main.js"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"package": "pkg --compress GZip --targets node18-linux --output bin/elba .",
"package:arm": "pkg --compress GZip --targets node18-linux-arm64 --output bin/elba .",
"start": "node dist/main",
"start:dev": "nodemon --config nodemon.json",
"start:prod": "node dist/main",
"pretest": "tsc",
"test": "lab -v -m 4000 -I require -a @hapi/code",
"mocks": "mocko --watch --port 6625 ./mocks",
"test:mocks": "concurrently -s first -k -n \"mocko, test\" \"cross-env SILENT=true mocko --port 6625 ./mocks\" \"npm test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-pinheiro/elba-balancer.git"
},
"author": "Gabriel Pinheiro <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gabriel-pinheiro/elba-balancer/issues"
},
"homepage": "https://github.com/gabriel-pinheiro/elba-balancer#readme",
"dependencies": {
"@hapi/boom": "^9.1.4",
"@hapi/bounce": "^2.0.0",
"@hapi/hapi": "^20.1.4",
"@hapi/podium": "^4.1.3",
"@iarna/toml": "^2.2.5",
"@mocko/h2o2": "^9.2.0",
"cls-rtracer": "^2.6.0",
"inversify": "^5.1.1",
"joi": "^17.4.2",
"logfmt": "^1.3.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@hapi/code": "^8.0.3",
"@hapi/lab": "^24.2.1",
"@mocko/cli": "^1.8.1",
"@types/hapi": "^18.0.5",
"@types/hapi__boom": "^9.0.1",
"@types/hapi__h2o2": "^8.3.3",
"@types/hapi__hapi": "^20.0.8",
"@types/logfmt": "^1.2.2",
"@types/node": "^15.12.4",
"axios": "^1.7.7",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"nodemon": "^3.1.7",
"pkg": "^5.3.1",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}