-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.4 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
{
"name": "myNFT",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node index.js",
"compile": "truffle compile",
"migrate": "truffle migrate",
"test:vesting": "truffle test ./test/vesting.js",
"test:lmnft": "truffle test ./test/withWhitelist.js",
"gen": "node index.js",
"hardhat:compile": "npx hardhat compile",
"hardhat:deploy-local": "npx hardhat run --network localhost scripts/deploy.js",
"hardhat:deploy-rinkeby": "npx hardhat run --network rinkeby scripts/deploy.js",
"hardhat:deploy-mainnet": "npx hardhat run --network mainnet scripts/deploy.js",
"ganache-cli": "npx ganache-cli",
"setupAndTest": "truffle compile && truffle migrate && truffle test ./test/vesting.js"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.4.1",
"@truffle/hdwallet-provider": "^2.0.0",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.8.4",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.27",
"solc": "^0.8.11",
"truffle": "^5.4.28",
"truffle-assertions": "^0.9.2",
"web3": "^1.6.1"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^3.0.1"
}
}