forked from openlawteam/tribute-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.34 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
{
"name": "tribute-contracts",
"version": "2.3.2",
"description": "A new modular DAO framework, inspired by the Moloch smart contracts",
"main": "truffle-config.js",
"keywords": [
"dao",
"framework",
"smart-contract",
"solidity",
"modular",
"moloch",
"ethereum"
],
"directories": {
"test": "test"
},
"dependencies": {
"@openzeppelin/contracts": "4.3.3",
"@truffle/contract": "^4.3.13",
"@truffle/hdwallet-provider": "1.2.2",
"chalk": "^4.1.2",
"eth-sig-util": "^3.0.0",
"ethereumjs-util": "^7.0.5",
"ganache-cli": "^6.12.1",
"keccak256": "^1.0.0",
"truffle-contract-size": "^2.0.1",
"ts-generator": "^0.1.1",
"web3-utils": "^1.5.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@nomiclabs/buidler": "^1.4.8",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.10",
"@smartdec/smartcheck": "^2.0.1",
"@typechain/truffle-v5": "^5.1.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.5",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eth-gas-reporter": "^0.2.22",
"ethers": "^5.5.1",
"install": "^0.13.0",
"mocha": "^8.3.2",
"np": "^7.5.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.2",
"solidity-coverage": "^0.7.16",
"truffle": "^5.3.2",
"truffle-abi": "^1.0.3",
"truffle-plugin-verify": "^0.5.8",
"ts-mocha": "^8.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"web3": "^1.5.2"
},
"scripts": {
"compile": "truffle compile",
"compile-abi": "truffle compile && truffle-abi",
"coverage": "DISABLE_SOLC_OPTIMIZER=true ts-node scripts/coverage.ts",
"deploy:ganache": "truffle deploy --network ganache --reset 2>&1 | tee logs/ganache-deploy_`date '+%F_%T'`.log",
"deploy:rinkeby": "truffle deploy --network rinkeby --reset 2>&1 | tee logs/rinkeby-deploy_`date '+%F_%T'`.log",
"deploy:mainnet": "truffle deploy --network mainnet --reset 2>&1 | tee logs/mainnet-deploy_`date '+%F_%T'`.log",
"deploy:goerli": "truffle deploy --network goerli --reset 2>&1 | tee logs/goerli-deploy_`date '+%F_%T'`.log",
"deploy:harmony": "truffle deploy --network harmony --reset 2>&1 | tee logs/harmony-deploy_`date '+%F_%T'`.log",
"deploy:harmonytest": "truffle deploy --network harmonytest --reset 2>&1 | tee logs/harmonytest-deploy_`date '+%F_%T'`.log",
"ganache": "ganache-cli --deterministic -p 7545 --networkId 1337 --chainId 1337 --hostname 0.0.0.0",
"ganache:fork": "ganache-cli --deterministic -f ",
"lint": "prettier --list-different 'contracts/**/*.sol' '**/*.js' '**/*.md'",
"lint:fix": "prettier --write 'contracts/**/*.sol' '**/*.js' '**/*.md'",
"migrate": "truffle migrate --network",
"test": "ts-mocha --timeout 2000000 --exit --recursive",
"verify": "npx ts-node scripts/verify.ts",
"release": "npm run lint:fix && np --no-publish --no-yarn",
"slither": "slither . --config-file slither.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openlawteam/tribute-contracts.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/openlawteam/tribute-contracts/issues"
},
"homepage": "https://github.com/openlawteam/tribute-contracts#readme"
}