-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "deposit-contract",
"version": "1.2.0",
"description": "Gnosis Chain official deposit contract",
"main": "index.js",
"repository": "https://github.com/gnosischain/deposit-contract",
"author": "xDAI dev team",
"license": "CC0-1.0",
"scripts": {
"compile": "truffle compile",
"test": "truffle test",
"coverage": "truffle run coverage",
"deploy-xdai": "truffle migrate --network xdai",
"deploy-sokol": "truffle migrate --network sokol",
"lint": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"compute-genesis-bytecode": "truffle compile && truffle exec scripts/compute_genesis_bytecodes.js --network xdai_ro"
},
"prettier": {
"printWidth": 120
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"@truffle/hdwallet-provider": "^1.4.2",
"dotenv": "^16.3.1",
"truffle": "^5.4.3",
"web3": "^1.6.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"ethereumjs-util": "^7.1.2",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17"
}
}