-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "lending-rates-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npm run build",
"dev": "./node_modules/nodemon/bin/nodemon.js --watch 'src/**/*' -e ts,tsx --exec ts-node ./src/server.ts",
"build": "tsc",
"start": "node build/server",
"script": "ts-node src/script.ts",
"test": "./node_modules/mocha/bin/mocha -r ts-node/register test/**/*.ts",
"test-unit": "./node_modules/mocha/bin/mocha -r ts-node/register test/unit/*.ts",
"test-integration": "./node_modules/mocha/bin/mocha -r ts-node/register test/integration/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dexlab-io/lending-rates-api"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dexlab-io/lending-rates-api/issues"
},
"homepage": "https://github.com/dexlab-io/lending-rates-api#readme",
"dependencies": {
"@dydxprotocol/solo": "^0.7.0",
"axios": "^0.19.0",
"colors": "^1.4.0",
"dotenv": "^8.0.0",
"ethers": "^4.0.27",
"http-status-codes": "^1.3.2",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.12",
"sqlite": "^3.0.3"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-router": "^7.0.40",
"@types/lodash": "^4.14.132",
"@types/mocha": "^5.2.6",
"@types/sinon": "^7.0.11",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.0",
"sinon": "^7.3.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}