-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.38 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
{
"name": "hoijuwon-solidity-boilerplate",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rinkeby": "truffle migrate --compile-all --network rinkeby > networks/rinkeby/logs/$(date +%Y-%m-%d-%I:%M%p).log.txt",
"ropsten": "truffle migrate --compile-all --network ropsten > networks/ropsten/logs/$(date +%Y-%m-%d-%I:%M%p).log.txt",
"mainnet": "truffle migrate --compile-all --network mainnet > networks/mainnet/logs/$(date +%Y-%m-%d-%I:%M%p).log.txt",
"ganache": "NODE_ENV=development npx truffle migrate --reset --compile-all",
"compile": "npx truffle compile --all",
"test:ropsten": "npx truffle test --network ropsten test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^4.3.3",
"@truffle/hdwallet-provider": "^1.5.0",
"bignumber.js": "^9.0.1",
"dotenv": "^10.0.0",
"eth-revert-reason": "^1.0.3",
"ganache-cli": "^6.12.2",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^1.3.6",
"web3-provider-engine": "^16.0.1"
},
"devDependencies": {
"@openzeppelin/truffle-upgrades": "^1.7.0",
"@typechain/truffle-v5": "^5.0.0",
"@types/node": "^12.20.13",
"ts-node": "^10.0.0",
"typechain": "^5.1.1",
"typescript": "^4.3.4"
}
}