-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
73 lines (73 loc) · 2.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
{
"name": "bfx-report-electron",
"version": "4.29.0",
"repository": "https://github.com/bitfinexcom/bfx-report-electron",
"description": "Reporting tool",
"author": "bitfinex.com",
"main": "index.js",
"engine": {
"node": ">=18.17.1"
},
"license": "Apache-2.0",
"dependencies": {
"archiver": "5.3.0",
"bfx-svc-test-helper": "git+https://github.com/bitfinexcom/bfx-svc-test-helper.git",
"bittorrent-dht": "10.0.2",
"changelog-parser": "3.0.1",
"clean-stack": "3.0.1",
"compare-versions": "4.1.1",
"cron-validate": "1.4.3",
"electron-alert": "0.1.20",
"electron-log": "4.4.8",
"electron-root-path": "1.0.16",
"electron-updater": "5.3.0",
"extract-zip": "2.0.1",
"get-port": "7.0.0",
"github-markdown-css": "5.1.0",
"grenache-grape": "git+https://github.com/bitfinexcom/grenache-grape.git",
"i18next": "23.15.1",
"i18next-fs-backend": "2.3.2",
"js-yaml": "4.1.0",
"lib-js-util-base": "git+https://github.com/bitfinexcom/lib-js-util-base.git",
"new-github-issue-url": "0.2.1",
"showdown": "2.0.3",
"truncate-utf8-bytes": "1.0.2",
"yauzl": "2.10.0"
},
"devDependencies": {
"@mapbox/node-pre-gyp": "1.0.11",
"@wdio/cli": "8.22.1",
"@wdio/junit-reporter": "8.21.0",
"@wdio/local-runner": "8.22.1",
"@wdio/mocha-framework": "8.22.0",
"@wdio/spec-reporter": "8.21.0",
"app-builder-bin": "4.2.0",
"concurrently": "9.0.1",
"cross-env": "7.0.3",
"dotenv": "16.3.1",
"electron": "27.3.5",
"electron-builder": "24.10.0",
"mocha": "10.2.0",
"standard": "17.1.0",
"wdio-electron-service": "5.4.0"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after"
]
},
"scripts": {
"start": "cross-env NODE_ENV=development DEBUG=* electron .",
"startWithUIOnPort": "concurrently -ki -c green,blue -n UI,ELECTRON \"npm run startUI\" \"cross-env NODE_ENV=development DEBUG=* SHOULD_LOCALHOST_BE_USED_FOR_LOADING_UI_IN_DEV_MODE=1 electron .\"",
"test": "standard && npm run unit",
"unit": "cross-env NODE_ENV=test mocha './src/**/__test__/*.spec.js' --config .mocharc.json",
"setup": "./scripts/setup.sh",
"launch": "./scripts/launch.sh",
"sync-repo": "./scripts/sync-repo.sh",
"e2e": "cross-env NODE_ENV=test wdio run ./wdio.conf.js",
"startUI": "cd bfx-report-ui && cross-env BROWSER=none npm start"
}
}