-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 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
{
"name": "aave-data-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node app/app.ts",
"start:prod": "node dist/app/app.js",
"start:wrangler": "yarn wrangler pages dev ./",
"build": "tsc",
"deploy": "yarn wrangler pages deploy ./ --project-name aave-api --env production",
"prepare": "husky install"
},
"devDependencies": {
"@types/bluebird": "^3.5.38",
"@types/koa": "^2.13.6",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^4.0.0",
"@types/koa__router": "^12.0.0",
"@types/lodash": "^4.14.195",
"husky": "^8.0.3",
"prettier": "2.8.8",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"wrangler": "^3.0.1"
},
"dependencies": {
"@aave/contract-helpers": "^1.17.6",
"@aave/math-utils": "^1.17.6",
"@bgd-labs/aave-address-book": "^1.24.0",
"@cloudflare/workers-types": "^4.20230518.0",
"@koa/cors": "^4.0.0",
"bignumber.js": "^9.1.1",
"bluebird": "^3.7.2",
"ethers": "5",
"koa": "^2.14.2",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"tslib": "^2.5.3"
}
}