-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
32 lines (32 loc) · 1004 Bytes
/
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
{
"name": "contract",
"license": "MIT",
"private": true,
"contributors": [
"Kim Hamilton Duffy (https://github.com/kimdhamilton)",
"Sean Neville (http://xdotzero.com)",
"Brice Stacey <[email protected]> (https://m2.xyz)",
"Matt Venables <[email protected]> (https://m2.xyz)"
],
"scripts": {
"hardhat:node": "npx hardhat node --hostname 127.0.0.1",
"hardhat:deploy": "npx hardhat run scripts/deploy.ts --network localhost",
"hardhat:faucet": "npx hardhat --network localhost faucet",
"hardhat:test": "npx hardhat test --network localhost"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.8.3",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.3.3",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.1",
"hardhat": "^2.4.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}