forked from bitfinexcom/bfx-report-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.77 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
{
"name": "bfx-report-express",
"version": "2.0.6",
"description": "Express server of reporting tool",
"main": "index.js",
"engine": {
"node": ">=8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitfinexcom/bfx-report-express.git"
},
"license": "Apache-2.0",
"contributors": [
"Vladimir Voronkov <[email protected]>",
"Paolo Ardoino <[email protected]>",
"Ezequiel Wernicke <[email protected]>"
],
"keywords": [
"bitfinex"
],
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-report-express/issues"
},
"homepage": "https://github.com/bitfinexcom/bfx-report-express#readme",
"dependencies": {
"better-npm-run": "0.1.1",
"colors": "1.4.0",
"config": "3.3.8",
"cors": "2.8.5",
"debug": "4.3.2",
"express": "4.21.0",
"grenache-nodejs-http": "0.7.13",
"grenache-nodejs-link": "1.0.0",
"grenache-nodejs-ws": "git+https://github.com:bitfinexcom/grenache-nodejs-ws.git",
"morgan": "1.10.0",
"winston": "3.3.3",
"ws": "8.18.0"
},
"devDependencies": {
"nodemon": "2.0.20",
"standard": "17.0.0"
},
"nodemonConfig": {
"verbose": true,
"ignore": [
"node_modules/",
"logs/",
".git/",
".idea/",
".vscode/"
]
},
"betterScripts": {
"start:prod": {
"command": "node index.js",
"env": {
"NODE_ENV": "production"
}
},
"start:dev": {
"command": "nodemon index.js",
"env": {
"NODE_ENV": "development"
}
},
"test": {
"command": "standard",
"env": {
"NODE_ENV": "test"
}
}
},
"scripts": {
"start": "better-npm-run start:prod",
"startDev": "better-npm-run start:dev",
"test": "better-npm-run test"
}
}