-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 950 Bytes
/
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
{
"name": "compund-playground",
"version": "0.2.0",
"description": "Compound protocol interaction",
"main": "./dist/src/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"test": "mocha -r ts-node/register test/**",
"build": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/lowdb": "^1.0.9",
"@types/node": "^12.7.2",
"acorn": "^7.3.1",
"bignumber.js": "^9.0.0",
"decimal.js": "^10.2.0",
"ethereumjs-tx": "^2.1.0",
"export-to-csv": "^0.2.1",
"lowdb": "^1.0.0",
"minimist": "^1.2.5",
"node-fetch": "^2.6.0",
"typescript": "^3.7.5",
"web3": "^1.2.5"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-plugin-only-warn": "^1.0.2",
"mocha": "^6.2.2",
"ts-node": "^8.5.0"
}
}