-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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": "turbo-cake",
"version": "1.0.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.5",
"hardhat": "^2.6.1",
"web3": "^1.5.2",
"winston": "^3.3.3"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.15.0",
"@pancakeswap/sdk": "^2.3.2",
"async-redis": "^2.0.0",
"gpg": "^0.6.0",
"graphite": "^0.1.4",
"hardhat-gas-reporter": "^1.0.4",
"lodash": "^4.17.21",
"loglevel": "^1.7.1",
"mocha": "^9.0.3",
"node-binance-api": "^0.12.5",
"node-fetch": "^2.6.1",
"openpgp": "^5.0.0",
"pm2": "^5.1.2",
"prompts": "^2.4.1",
"redis": "^3.1.2",
"web3-eth-contract": "^1.5.2",
"yargs": "^17.1.1"
},
"scripts": {
"prettier": "prettier --write '{test,src,contracts,scripts}/**/*.{ts,js,json,sol}'",
"typechain": "typechain --target=web3-v1 --outDir=typechain-abi 'abi/**/*.json' && npx hardhat typechain",
"prebuild": "rm -rf artifacts && rm -rf typechain-hardhat && rm -rf typechain-abi && npm run prettier && npm run typechain",
"build": "npx hardhat compile && npx solhint 'contracts/**/*.sol'",
"test": "npx hardhat test # --logs",
"deploy": "npx hardhat deploy --network $1"
}
}