-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "PancakeSwap",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"migrate": "truffle migrate --network bscTestnet --reset",
"compile": "truffle compile --network bscTestnet",
"test": "npx builder test",
"coverage": "npx builder coverage"
},
"dependencies": {
"@openzeppelin/contracts": "4.1",
"@openzeppelin/test-helpers": "^0.5.6",
"@pancakeswap/pancake-swap-lib": "^0.0.1",
"truffle": "^5.1.58",
"truffle-flattener": "^1.4.4"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.4.7",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-waffle": "^2.0.0",
"@nomiclabs/buidler-web3": "^1.3.4",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.14",
"hardhat": "^2.9.7",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.7.13",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-plugin-verify": "^0.4.0",
"web3": "^1.3.0"
}
}