-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.6 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "livepeer-alerts-backend",
"version": "1.2.1",
"description": "Provide pro-active alert notifications that will help LPT token holders to be updated and understand how the transcoders they are delegating the tokens to are performing in near real time.",
"author": "Protofire @protofire",
"main": "index.js",
"private": false,
"engines": {
"node": "10.16.0",
"npm": ">=5.6.0"
},
"scripts": {
"start": "nodemon --harmony index.js",
"start:telegram-bot": "nodemon --harmony server/jobs/running-bot-telegram.js",
"start:check-round-change": "node --harmony ./server/jobs/check-round-change.js",
"start:check-delegate-change-rules": "node --harmony ./server/jobs/check-delegate-change-rules.js",
"start:debug-total-stake": "node --harmony ./server/jobs/debug-total-stake.js",
"start:update-pools-shares": "node --harmony ./server/jobs/update-pools-and-shares.js",
"start:update-delegates-delegators-data": "node --harmony ./server/jobs/update-delegates-delegators-data.js",
"lint": "esw *.js server config --color",
"lint:watch": "npm run lint -- --watch",
"test": "NODE_ENV=test ./node_modules/.bin/mocha test/*.test.js --timeout=1200000 --ui bdd --reporter spec --colors server --harmony --exit",
"test:watch": "npm run test -- --watch",
"test:coverage": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- test/*.test.js --timeout=1200000 --ui bdd --reporter spec --colors server --exit",
"test:check-coverage": "npm run test:coverage && istanbul check-coverage",
"report-coverage": "coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git@github.com:protofire/livepeer-alerts-backend.git"
},
"keywords": [
"blockchain",
"livepeer"
],
"dependencies": {
"@livepeer/sdk": "^1.0.0-alpha.7",
"@sendgrid/mail": "^6.3.1",
"apollo-boost": "^0.4.2",
"apollo-cache-inmemory": "^1.6.2",
"apollo-client": "^2.6.2",
"apollo-link-http": "^1.5.14",
"axios": "^0.19.0",
"big.js": "^5.2.2",
"bluebird": "3.5.1",
"bn.js": "^4.11.8",
"body-parser": "1.18.2",
"compression": "1.7.2",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"debug": "^2.4.5",
"dotenv": "^4.0.0",
"ethjs-unit": "^0.1.6",
"express": "4.16.3",
"express-validation": "1.0.2",
"express-winston": "2.5.0",
"graphql": "^14.3.1",
"graphql-tag": "^2.10.1",
"handlebars": "^4.1.2",
"helmet": "^3.21.2",
"host-validation": "^2.0.1",
"http-status": "1.0.1",
"joi": "10.6.0",
"lerna": "^3.19.0",
"lodash": ">=4.17.19",
"method-override": "^2.3.10",
"minimist": "^1.2.3",
"moment": "^2.24.0",
"mongoose": "^5.4.0",
"morgan": "^1.9.1",
"node-fetch": "^2.6.1",
"node-telegram-bot-api": "^0.30.0",
"nodemon": ">=1.19.1",
"promise-retry": "^1.1.1",
"striptags": "^3.1.1",
"web3": "github:ethereum/web3.js",
"winston": "2.4.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "4.1.2",
"coveralls": "^3.0.2",
"cross-env": "5.1.4",
"cz-conventional-changelog": "1.2.0",
"eslint": "5.6.0",
"eslint-utils": ">=1.4.1",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-watch": "^5.1.2",
"husky": "1.3.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
"sinon": "^7.3.2",
"sinon-mongoose": "^2.3.0",
"supertest": "^3.0.0",
"validate-commit-msg": "^2.14.0"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}