-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
44 lines (44 loc) · 1.35 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
41
42
43
44
{
"name": "vader-protocol-v2",
"version": "1.0.0",
"description": "Vader Protocol",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"coverage": "truffle run coverage",
"compile": "rm -rf ./build && truffle compile",
"solhint": "solhint 'contracts/**/*.sol'",
"lint": "prettier --write contracts/*.sol contracts/**/*.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vether/vader-protocol-v2.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/vether/vader-protocol-v2.git"
},
"homepage": "https://github.com/vether/vader-protocol-v2#readme",
"dependencies": {
"@openzeppelin/contracts": "4.3.2",
"@openzeppelin/contracts-upgradeable": "^4.4.1",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/hdwallet-provider": "^2.0.0",
"solidity-coverage": "^0.7.17"
},
"devDependencies": {
"dotenv": "^11.0.0",
"ethers": "^5.5.1",
"ganache-cli": "^6.12.2",
"keccak256": "^1.0.3",
"merkletreejs": "^0.2.24",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"truffle-plugin-verify": "^0.5.20"
}
}