-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.13 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.13 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
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
{
"name": "@bitfinex/bfx-reports-framework",
"version": "5.0.0",
"description": "Bitfinex reports framework",
"main": "worker.js",
"engines": {
"node": ">=20.18.1"
},
"license": "Apache-2.0",
"dependencies": {
"@bitfinex/bfx-facs-db-better-sqlite": "git+https://github.com/bitfinexcom/bfx-facs-db-better-sqlite.git",
"@bitfinex/bfx-facs-scheduler": "git+https://github.com/bitfinexcom/bfx-facs-scheduler.git",
"@bitfinex/bfx-report": "git+https://github.com/bitfinexcom/bfx-report.git",
"@bitfinex/bfx-svc-boot-js": "https://github.com/bitfinexcom/bfx-svc-boot-js.git",
"@bitfinex/lib-js-util-base": "git+https://github.com/bitfinexcom/lib-js-util-base.git",
"bignumber.js": "9.1.2",
"csv": "5.5.3",
"grenache-nodejs-ws": "git+https://github.com/bitfinexcom/grenache-nodejs-ws.git",
"inversify": "6.0.1",
"lodash": "4.17.23",
"mathjs": "14.8.1",
"moment": "2.29.4",
"puppeteer": "24.1.0",
"uuid": "9.0.0",
"yargs": "17.2.1"
},
"devDependencies": {
"@bitfinex/bfx-report-express": "git+https://github.com/bitfinexcom/bfx-report-express.git",
"bfx-api-mock-srv": "git+https://github.com/bitfinexcom/bfx-api-mock-srv.git",
"chai": "4.3.4",
"concurrently": "9.2.1",
"cross-env": "10.1.0",
"grenache-grape": "git+https://github.com/bitfinexcom/grenache-grape.git",
"mocha": "11.1.0",
"nodemon": "3.1.14",
"standard": "17.0.0",
"supertest": "7.1.0"
},
"contributors": [
"Paolo Ardoino <paolo@bitfinex.com>",
"Ezequiel Wernicke <ezequiel.wernicke@bitfinex.com>",
"Vladimir Voronkov <vsvoronkov@gmail.com>"
],
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
],
"ignore": [
"bfx-report-ui"
]
},
"nodemonConfig": {
"verbose": true,
"ignore": [
"test/",
"db/",
"node_modules/",
"logs/",
".git/",
".idea/",
".vscode/",
"csv/",
"workers/loc.api/queue/temp/",
"workers/loc.api/queue/views/"
]
},
"scripts": {
"start": "concurrently -ki -c cyan,green,blue -n ENV,WORKER,SERVER \"npm run startSimulEnv\" \"node -e 'setTimeout(()=>{},3000)' && npm run startDev\" \"npm run startServDev\"",
"startDev": "cross-env NODE_ENV=development nodemon worker.js --env=development --wtype=wrk-report-framework-api --apiPort 1337 --dbId 1 --isSchedulerEnabled true",
"startServDev": "cross-env NODE_ENV=development NODE_CONFIG_DIR=./test/config node ./node_modules/@bitfinex/bfx-report-express",
"startSimulEnv": "cross-env NODE_ENV=development node ./node_modules/@bitfinex/bfx-report/test/simulate/simulate-enviroment.js",
"test": "standard && npm run unit && cross-env NODE_ENV=test mocha './test/**/*.spec.js' --config .mocharc.json",
"testDev": "cross-env NODE_ENV=test mocha './workers/**/__test__/*-dev.spec.js' './test/**/*-dev.spec.js' --config .mocharc.json",
"unit": "cross-env NODE_ENV=test mocha './workers/**/__test__/*.spec.js' --config .mocharc.json",
"migration": "node scripts/node/migration",
"init": "bash init.sh",
"initDev": "bash init.sh -d"
}
}