forked from OriginProtocol/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "@origin/cron",
"description": "Origin distributed cron jobs framework",
"version": "0.1.0",
"engines": {
"node": "10.x"
},
"author": "Origin Protocol, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/OriginProtocol/origin/issues"
},
"dependencies": {
"@origin/contracts": "^0.8.6",
"@origin/consistency": "^0.1.0",
"@origin/growth": "^0.1.0",
"@sendgrid/mail": "6.5.2",
"bull": "3.12.1",
"cross-fetch": "3.0.4",
"dotenv": "8.2.0",
"envkey": "1.2.7",
"logplease": "1.2.15",
"per-env": "1.0.2",
"tmp": "0.1.0"
},
"devDependencies": {
"mocha": "7.0.1",
"nodemon": "2.0.2",
"prettier": "1.19.1"
},
"scripts": {
"lint": "eslint . && npm run prettier:check",
"prettier": "prettier --write *.js \"src/**/*.js\"",
"prettier:check": "prettier -c *.js \"src/**/*.js\"",
"start": "per-env",
"start:development": "nodemon src/scheduler.js",
"start:production": "node src/scheduler.js",
"test": "NODE_ENV=test mocha --timeout 10000 --exit"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}