forked from layerx-labs/dappkit-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.74 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.74 KB
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
{
"name": "contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx hardhat compile",
"compile": "npx hardhat compile",
"test:exercise1": "npx hardhat run scripts/exercise1.ts",
"test:exercise2": "npx hardhat run scripts/exercise2.ts",
"test:exercise3": "npx hardhat run scripts/exercise3.ts",
"deploy:local": "npx hardhat run --network local scripts/deploy.ts",
"deploy:kovan": "npx hardhat run --network kovan scripts/deploy.ts",
"deploy:ropsten": "npx hardhat run --network ropsten scripts/deploy.ts",
"deploy:moonbase": "npx hardhat run --network moonbase scripts/deploy.ts",
"ganache:dev": "npx ganache -h 0.0.0.0 -p 8545 -a 50 -s 0x6d2119524d65ea0b15b214ef260d3acdf8ca0ec6ec68045b5785d970f5ad97bd3d0025d212e625a8a21920852cc165c10faa6d8387a0c2530d1ffc0d265d92935749"
},
"author": "Helder Vasconcelos",
"license": "ISC",
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.5",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"ethers": "^5.7.2",
"hardhat": "^2.12.6",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"ganache": "^7.7.7",
"typescript": "^4.9.4"
},
"dependencies": {
"@taikai/dappkit": "^2.3.0",
"dotenv": "^16.0.3"
}
}