-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "bfx-ext-helpdesk-js",
"version": "1.0.2",
"private": false,
"description": "Bitfinex External Helpdesk Service",
"author": {
"name": "Davide Scola",
"email": "davide@bitfinex.com"
},
"keywords": [
"javascript",
"nodejs",
"api",
"js",
"node",
"microservices",
"microservice",
"async",
"backend-services",
"backend",
"grenache",
"bitfinex"
],
"dependencies": {
"@hapi/bourne": "~3.0.0",
"bfx-svc-boot-js": "git+https://github.com/bitfinexcom/bfx-svc-boot-js.git#6ae412ee",
"bfx-wrk-api": "git+https://github.com/bitfinexcom/bfx-wrk-api.git#b81d4dd3",
"fastest-validator": "~1.19.0",
"got": "~11.8.6"
},
"engines": {
"node": ">=14.18.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bitfinexcom/bfx-ext-helpdesk-js.git"
},
"maintainers": [
{
"name": "Davide Scola",
"email": "davide@bitfinex.com"
}
],
"devDependencies": {
"grenache-nodejs-http": "git+https://github.com/bitfinexcom/grenache-nodejs-http.git#31820b71",
"grenache-nodejs-link": "git+https://github.com/bitfinexcom/grenache-nodejs-link.git#d4d889a1",
"husky": "~8.0.3",
"standard": "~17.1.0"
},
"config": {
"port": "7777",
"env": "development"
},
"scripts": {
"prepare": "husky install",
"lint": "standard",
"lint:fix": "standard --fix",
"worker": "exec node worker.js --env=\"${npm_config_env:-${npm_package_config_env}}\" --wtype='wrk-ext-helpdesk-api' --apiPort \"${npm_config_port:-${npm_package_config_port}}\"",
"worker:pause": "exec $npm_execpath run -- worker:kill --signal 'SIGTSTP'",
"worker:resume": "exec $npm_execpath run -- worker:kill --signal 'SIGCONT'",
"worker:stop": "exec $npm_execpath run -- worker:kill --signal 'SIGINT'",
"worker:kill": "exec pkill --full '^wrk-ext-helpdesk-api-[0-9]+\\s*$'"
}
}