forked from stellar-expert/operations-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "stellar-notifier",
"license": "MIT",
"private": true,
"version": "0.2.4",
"author": "orbitlens",
"description": "Stellar operations observer and notifier.",
"main": "app.js",
"homepage": "https://github.com/orbitlens/stellar-notifier",
"repository": {
"type": "git",
"url": "https://github.com/orbitlens/stellar-notifier"
},
"scripts": {
"dev": "cross-env NODE_ENV=development node ./app.js",
"start": "cross-env NODE_ENV=production node ./app.js",
"test": "cross-env NODE_ENV=test node_modules/.bin/mocha"
},
"keywords": [
"stellar",
"notifier"
],
"engines": {
"node": ">=8.6.0"
},
"dependencies": {
"axios": "0.18.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"moment-duration-format": "^2.2.2",
"moment-timezone": "^0.5.23",
"mongoose": "^5.4.14",
"morgan": "^1.9.1",
"stellar-base": "^0.11.0",
"stellar-sdk": "^0.13.0",
"throttleit": "^1.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.1.0",
"sinon": "^4.5.0",
"cross-env": "^5.2.0"
}
}