-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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": "arborvote-contracts",
"version": "1.0.0",
"description": "A voting module for deliberative decision-making using argument trees.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ArborVote/ArborVote-contracts.git"
},
"author": "Michael Andree Heuer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArborVote/ArborVote-contracts/issues"
},
"scripts": {
"clean": "rm -rf artifacts cache",
"test": "npx hardhat test"
},
"homepage": "https://github.com/ArborVote/ArborVote-contracts#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"@typechain/ethers-v5": "^7.0.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"hardhat": "^2.5.0",
"hardhat-typechain": "^0.3.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.2.1",
"typechain": "^5.1.2",
"typescript": "^4.4.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.2.0",
"@openzeppelin/contracts-upgradeable": "^4.2.0",
"hardhat-gas-reporter": "^1.0.6"
}
}