This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.66 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": "velo-bot",
"version": "1.1.0",
"description": "Velo bot",
"license": "MIT",
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"scripts": {
"start:bot": "ts-node-dev --files --respawn src/app.ts",
"start": "ts-node --transpile-only src/app.ts --env prod",
"lint:ts": "eslint --ext .js,.ts .",
"lint:ts:fix": "yarn lint:ts --fix",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"generate-types": "yarn typechain --target ethers-v5 --out-dir src/contracts/typechain src/contracts/abis/*.json"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/units": "^5.7.0",
"axios": "^1.1.3",
"canvas": "^2.10.2",
"coingecko-api": "^1.0.10",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"lodash": "^4.17.21",
"merge-images": "^2.0.0",
"node-schedule": "^2.1.0",
"react": "^18.2.0",
"telegraf": "^4.10.0",
"ts-node": "^10.9.1",
"twitter-api-v2": "^1.12.9"
},
"devDependencies": {
"@types/coingecko-api": "^1.0.10",
"@types/lodash": "^4.14.188",
"@types/merge-images": "^1.2.1",
"@types/node": "^18.11.9",
"@types/node-schedule": "^2.1.0",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"typechain": "^8.1.1",
"typescript": "^4.8.4",
"yarn-upgrade-all": "^0.7.1"
}
}