-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 916 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
{
"name": "optionatoor",
"version": "0.1.0",
"author": "Michalis Kargakis",
"license": "GPL-3.0-only",
"private": true,
"engines": {
"node": "16.x"
},
"scripts": {
"build": "yarn && rm -rf ./dist && tsc -p tsconfig.json && yarn copy",
"clean": "rm -rf ./node_modules ./dist",
"copy": "cp ./package.json ./yarn.lock ./dist",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"start": "node ./dist/main.js"
},
"devDependencies": {
"@types/node": "^17.0.8",
"prettier": "^2.7.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@lyrafinance/lyra-js": "^0.0.15",
"axios": "^1.6.0",
"discord.js": "^13.8.0",
"dotenv": "^10.0.0",
"ethers": "^5.6.9",
"@kargakis/ethers-multicall": "^0.3.0",
"joi": "^17.5.0"
}
}