-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
108 lines (108 loc) · 3.62 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "tribute-contracts",
"version": "2.10.0",
"description": "A new modular DAO framework, inspired by the Moloch smart contracts",
"keywords": [
"dao",
"framework",
"smart-contract",
"solidity",
"modular",
"moloch",
"ethereum"
],
"homepage": "https://tributedao.com",
"bugs": {
"url": "https://github.com/openlawteam/tribute-contracts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openlawteam/tribute-contracts.git"
},
"license": "MIT",
"author": "[email protected]",
"main": "hardhat-config.js",
"directories": {
"test": "test"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"scripts": {
"build": "npm ci && npm run compile",
"clean": "rimraf build/",
"compile": "hardhat compile && scripts/prepack.sh",
"coverage": "TEST=true hardhat coverage",
"deploy": "scripts/deploy.sh",
"deployTributeERC721": "npm run compile && sh scripts/deployTributeERC721.sh",
"upgradeTributeERC721": "npm run compile && sh scripts/upgradeTributeERC721.sh",
"docker": "cd docker && docker-compose up",
"ganache": "ganache-cli --wallet.deterministic -p 7545 --chain.networkId 1337 --chain.chainId 1337 --server.host 0.0.0.0",
"ganache:fork": "ganache-cli --deterministic -f ",
"hardhat": "hardhat run --network hardhat tasks/deploy.js",
"lint": "prettier --list-different 'contracts/**/*.sol' '**/*.js' '**/*.md'",
"lint:fix": "prettier --write 'contracts/**/*.sol' '**/*.js' '**/*.md'",
"migrate": "truffle migrate --network",
"prepack": "scripts/prepack.sh",
"release": "npm run lint:fix && np --no-publish --no-yarn",
"slither": "npm run compile && slither . --ignore-compile --hardhat-artifacts-directory ./build/artifacts --config-file slither.config.json",
"test": "TEST=true hardhat test --no-compile",
"truffle-verifier": "truffle run verify",
"verify": "truffle compile && ts-node tasks/verify.ts"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@nomiclabs/buidler": "1.4.8",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-truffle5": "2.0.7",
"@nomiclabs/hardhat-waffle": "2.0.4",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/contracts": "4.3.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@openzeppelin/hardhat-upgrades": "1.20.0",
"@openzeppelin/test-helpers": "0.5.10",
"@smartdec/smartcheck": "2.0.1",
"@truffle/contract": "4.3.13",
"@truffle/hdwallet-provider": "2.0.0",
"@typechain/truffle-v5": "5.1.0",
"@types/chai": "4.2.22",
"@types/inquirer": "8.1.3",
"@types/lodash": "4.14.178",
"@types/mocha": "9.0.0",
"@types/node": "16.10.5",
"chai": "4.3.4",
"chalk": "5.0.0",
"dotenv": "8.2.0",
"eth-gas-reporter": "0.2.22",
"eth-sig-util": "3.0.0",
"ethereum-waffle": "3.4.0",
"ethereumjs-util": "7.0.5",
"ethers": "5.7.2",
"ethers-gcp-kms-signer": "1.1.5",
"ganache-cli": "6.12.2",
"hardhat": "2.12.5",
"hardhat-contract-sizer": "2.4.0",
"hardhat-gas-reporter": "1.0.7",
"inquirer": "8.2.0",
"install": "0.13.0",
"keccak256": "1.0.0",
"lodash": "4.17.21",
"mocha": "8.3.2",
"np": "7.5.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "3.0.2",
"solhint": "3.3.6",
"solidity-coverage": "^0.7.22",
"truffle": "5.11.5",
"truffle-abi": "1.0.3",
"truffle-plugin-verify": "0.6.7",
"ts-generator": "0.1.1",
"ts-mocha": "8.0.0",
"ts-node": "10.4.0",
"typescript": "4.4.4",
"web3": "1.7.1",
"web3-utils": "1.5.2"
}
}