-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
32 lines (32 loc) · 1007 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": "stable_coin",
"license": "MIT",
"dependencies": {
"@openzeppelin/cli": "^2.8.2",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/upgrades": "^2.8.0"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.4",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/hdwallet-provider": "^1.0.42",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ganache-cli": "^6.9.1",
"mnemonics": "^1.1.3",
"mocha": "^8.1.0",
"solc": "0.6.9",
"truffle": "^5.1.39",
"truffle-abi": "^1.0.3",
"web3": "^1.2.11"
},
"scripts": {
"test": "mocha --exit --recursive test",
"network:truffle": "truffle develop --log",
"network:ganache": "ganache-cli",
"deploy": "oz deploy",
"deploy:truffle": "oz deploy --network truffle --kind regular StableCoin",
"deploy:ganache": "oz deploy --network ganache --kind regular StableCoin",
"deploy:ropsten": "oz deploy --network ropsten --kind regular StableCoin"
}
}