-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
112 lines (112 loc) · 3.39 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "bfx-report",
"version": "4.11.1",
"description": "Reporting tool",
"main": "worker.js",
"license": "Apache-2.0",
"contributors": [
"Vladimir Voronkov <vsvoronkov@gmail.com>",
"Paolo Ardoino <paolo@btifinex.com>",
"Ezequiel Wernicke <ezequiel.wernicke@bitfinex.com>"
],
"dependencies": {
"ajv": "8.6.3",
"async": "3.2.4",
"better-npm-run": "0.1.1",
"bfx-facs-base": "git+https://github.com:bitfinexcom/bfx-facs-base.git",
"bfx-facs-deflate": "git+https://github.com:bitfinexcom/bfx-facs-deflate.git",
"bfx-facs-grc-slack": "git+https://github.com/bitfinexcom/bfx-facs-grc-slack.git",
"bfx-facs-interval": "git+https://github.com/bitfinexcom/bfx-facs-interval.git",
"bfx-facs-lokue": "git+https://github.com:bitfinexcom/bfx-facs-lokue.git",
"bfx-svc-boot-js": "https://github.com/bitfinexcom/bfx-svc-boot-js.git",
"bfx-wrk-api": "git+https://github.com/bitfinexcom/bfx-wrk-api.git",
"bitfinex-api-node": "6.0.0",
"colors": "1.4.0",
"csv": "5.5.3",
"i18next": "23.15.1",
"i18next-fs-backend": "2.3.2",
"inversify": "6.0.1",
"lib-js-util-base": "git+https://github.com/bitfinexcom/lib-js-util-base.git",
"lru": "3.1.0",
"moment": "2.29.4",
"moment-timezone": "0.5.39",
"pug": "3.0.3",
"reflect-metadata": "0.1.13",
"triple-beam": "1.3.0",
"uuid": "9.0.0",
"winston": "3.3.3",
"winston-transport": "4.4.0",
"yargs": "17.2.1"
},
"devDependencies": {
"bfx-api-mock-srv": "git+https://github.com/bitfinexcom/bfx-api-mock-srv.git",
"bfx-report-express": "git+https://github.com/bitfinexcom/bfx-report-express.git",
"chai": "4.3.4",
"grenache-grape": "git+https://github.com/bitfinexcom/grenache-grape.git",
"mocha": "10.1.0",
"nodemon": "2.0.20",
"standard": "17.0.0",
"supertest": "6.3.2"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"nodemonConfig": {
"verbose": true,
"ignore": [
"test/",
"db/",
"node_modules/",
"logs/",
".git/",
".idea/",
".vscode/",
"csv/",
"workers/loc.api/queue/temp/",
"workers/loc.api/queue/views/"
]
},
"betterScripts": {
"start:serv": {
"command": "nodemon ./node_modules/bfx-report-express",
"env": {
"NODE_ENV": "development",
"NODE_CONFIG_DIR": "./test/config"
}
},
"test": {
"command": "standard && mocha './workers/**/__test__/*.spec.js' './test/**/*.spec.js' --config .mocharc.json",
"env": {
"NODE_ENV": "test"
}
},
"unit": {
"command": "mocha './workers/**/__test__/*.spec.js' --config .mocharc.json",
"env": {
"NODE_ENV": "test"
}
},
"testDev": {
"command": "standard && mocha --recursive test/**/*-dev.spec.js --exit --timeout 10000",
"env": {
"NODE_ENV": "test"
}
}
},
"scripts": {
"start": "node worker.js --env=production --wtype=wrk-report-service-api --apiPort 1337 --dbId 1",
"startDev": "nodemon worker.js --env=development --wtype=wrk-report-service-api --apiPort 1337 --dbId 1",
"startServDev": "better-npm-run start:serv",
"startSimulEnv": "node test/simulate/simulate-enviroment.js",
"test": "better-npm-run test",
"testDev": "better-npm-run testDev",
"unit": "better-npm-run unit"
}
}