-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 951 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
{
"name": "truffle-mint-dai",
"version": "1.0.1",
"description": "Demo repo to show how to acquire your own forked mainnet DAI",
"scripts": {
"ganache": "ganache-cli --fork $ETHEREUM_NODE --port 8546 --unlock 0x6b175474e89094c44da98b954eedeac495271d0f --unlock $USER_ADDRESS",
"build": "truffle build",
"migrate": "truffle migrate",
"test": "truffle test",
"getAddress": "node getAddress.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanio/truffle-mint-dai.git"
},
"author": "Ryan Ghods <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryanio/truffle-mint-dai/issues"
},
"homepage": "https://github.com/ryanio/truffle-mint-dai",
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.10",
"chai": "^4.3.0",
"ganache-cli": "^6.12.2",
"truffle": "^5.1.64"
},
"dependencies": {
"@openzeppelin/contracts": "^3.4.1"
}
}