-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 914 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
{
"name": "aave-alert",
"version": "1.0.0",
"description": "Alert bot for aave",
"main": "index.ts",
"license": "MIT",
"scripts": {
"start": "tsc --project ./ && node build/index.js",
"build": "tsc --project ./",
"dev": "nodemon",
"deploy": "node build/index.js"
},
"dependencies": {
"@aave/protocol-js": "^2.7.2",
"@maticnetwork/dagger": "^0.2.0",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"apollo-server": "^2.25.1",
"dotenv": "^10.0.0",
"eth-provider": "^0.9.3",
"ethers": "^5.3.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"micro-bot": "^2.5.3",
"node-fetch": "^2.6.1",
"telegraf": "^4.3.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"apollo": "^2.33.4",
"nodemon": "^2.0.12",
"prettier": "2.3.1"
}
}