-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 929 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
{
"name": "solidity-starter",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "truffle test",
"lint": "solhint 'contracts/**/*.sol'",
"build": "truffle compile",
"migration": "truffle migration",
"coverage": "node --max-old-space-size=4096 ./node_modules/.bin/truffle run coverage",
"deploy:rinkeby": "truffle deploy --network rinkeby --reset",
"deploy:testnet": "truffle deploy --network testnet --reset",
"deploy:eth": "truffle deploy --network eth --reset",
"deploy:bsc": "truffle deploy --network bsc --reset"
},
"author": "",
"license": "GPL-3.0",
"dependencies": {
"@openzeppelin/contracts": "^4.6.0"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.15",
"@truffle/hdwallet-provider": "^2.0.8",
"solhint": "^3.3.7",
"solidity-coverage": "0.8.0-beta.1",
"truffle": "^5.4.33",
"truffle-plugin-verify": "^0.5.25"
}
}