-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
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
{
"name": "mysmartcontract",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"scripts": {
"private-network-quiet": "ganache-cli -p 8545 --quiet",
"solhint": "solhint -f table contracts/**/*.sol",
"compile": "truffle compile --all",
"test": "truffle test",
"coverage": "truffle run coverage",
"ci": "npm-run-all -s -l compile solhint coverage"
},
"dependencies": {
"@openzeppelin/contracts": "^4.2.0",
"solc": "^0.8.6",
"solidity-coverage": "^0.7.17",
"truffle": "^5.4.17",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^1.5.2"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.12",
"chai": "^4.3.4",
"decimal.js": "^10.3.1",
"dotenv": "^10.0.0",
"eth-crypto": "^2.0.0",
"eth-gas-reporter": "^0.2.23",
"ganache-cli": "^6.12.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.3.6",
"truffle-plugin-verify": "^0.5.11"
},
"author": "",
"license": "ISC"
}