-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "@stellar-expert/operations-notifier",
"license": "MIT",
"private": true,
"version": "0.4.3",
"author": "orbitlens<orbit.lens@stellar.expert>",
"description": "Stellar operations observer and notifier.",
"main": "app.js",
"homepage": "https://github.com/stellar-expert/operations-notifier",
"repository": {
"type": "git",
"url": "https://github.com/stellar-expert/operations-notifier"
},
"bugs": {
"url": "https://github.com/stellar-expert/operations-notifier/issues",
"email": "orbit.lens@gmail.com"
},
"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",
"preversion": "npm test"
},
"keywords": [
"stellar",
"payments",
"notifier"
],
"engines": {
"node": ">=8.6.0"
},
"dependencies": {
"axios": "0.19.2",
"body-parser": "^1.19.0",
"cross-env": "^7.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.9.1",
"stellar-sdk": "^4.0.0",
"throttleit": "^1.0.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^7.0.1",
"morgan": "^1.9.1",
"sinon": "^8.1.1"
}
}