-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.46 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "firebird-smartcontracts",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"testrpc": "ganache-cli --gasLimit 13000000 -e 100000 --networkId 666",
"truffle-migrate": "truffle migrate --network bscTestnet --reset",
"truffle-compile": "truffle compile --network bscTestnet",
"truffle-test": "rm -rf contracts/flattened/*.sol && truffle test",
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "hardhat test",
"test:verbose": "VERBOSE=true hardhat test",
"flat:prettier": "prettier --write 'contracts-verify/*.sol'",
"flatten": "truffle-flattener contracts/**/*.sol",
"flat:contracts": "sol-merger 'contracts/**/*.sol' ./build/contracts-flat"
},
"dependencies": {
"@openzeppelin/contracts": "^3.4.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"eth-revert-reason": "^1.0.3",
"truffle": "^5.1.41",
"truffle-privatekey-provider": "^1.5.0"
},
"devDependencies": {
"@ethereum-waffle/chai": "^3.2.1",
"@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-etherscan": "^2.1.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-vyper": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.9",
"@truffle/hdwallet-provider": "^1.1.0",
"@typechain/ethers-v5": "^2.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"ethereum-waffle": "^3.0.0",
"ethereumjs-util": "^6.2.0",
"ethers": "^5.0.19",
"hardhat": "^2.0.3",
"hardhat-contract-sizer": "^2.0.2",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-deploy-ethers": "^0.3.0-beta.5",
"hardhat-gas-reporter": "^1.0.3",
"hardhat-typechain": "^0.3.3",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.1",
"sol-merger": "^3.1.0",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.11",
"truffle-assertions": "^0.9.1",
"truffle-flattener": "^1.4.4",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-plugin-verify": "^0.4.0",
"ts-node": "^9.0.0",
"typechain": "^3.0.0",
"typescript": "^4.0.3",
"web3": "^1.3.6"
}
}