-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "humanist-coin",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"start": "node ./src/oracleApi/services",
"test": "mocha -R spec ./test/test.config.js ./test/unit --recursive --timeout 15000",
"lint": "yarn lint:contract && yarn lint:app",
"lint:contract": "solhint src/contracts/**/*.sol",
"lint:app": "eslint . --ext .js"
},
"engines": {
"node": "8.11.x",
"npm": "5.5.x",
"yarn": "1.7.0"
},
"dependencies": {
"@koa/cors": "^2.2.1",
"@sendgrid/mail": "^6.2.1",
"assert": "^1.4.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"decimal.js": "^10.0.1",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"ethers": "^3.0.17",
"fs-extra": "^6.0.1",
"ganache-core": "^3.0.0-beta.0",
"joi": "^13.3.0",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-cache-control": "^2.0.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.10",
"mailchimp-api-v3": "^1.12.0",
"mocha": "^5.2.0",
"moment": "^2.22.1",
"ngrok": "^3.0.1",
"npmlog": "^4.1.2",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"sinon": "^5.0.10",
"solc": "^0.4.24",
"solhint": "^1.2.1",
"uuid-random": "^1.0.6",
"web3": "^1.0.0-beta.34"
}
}