-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.54 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
{
"name": "dictatordao-majordomo",
"private": false,
"version": "1.0.0",
"description": "DictatorDAO without an Auction System: MasterChef based Staking Protocol",
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json",
"!/contracts/mocks/**/*"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manifoldfinance/majordomo.git"
},
"keywords": [
"solidity",
"ethereum",
"smart contracts",
"defi"
],
"author": "Boring Crypto, Barry London, et al.",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/manifoldfinance/majordomo/issues"
},
"homepage": "https://github.com/manifoldfinance/majordomo#readme",
"scripts": {
"hht": "hardhat test",
"fmt": "prettier --config prettier.config.js --write contracts/*.sol contracts/**/*.sol *.js *.json test/*.js test/**/*.js",
"pretty-quick": "pretty-quick",
"deploy": "hardhat deploy:Greeter",
"cover": "hardhat coverage",
"flatten": "hardhat flatten ./contracts/DictatorDAO.sol > ./contracts/DictatorDAOFlat.sol",
"flat": "hardhat flat ./contracts/DictatorDAO.sol --output ./contracts/DictatorDAOFlat.sol",
"ts": "yarn run typechain --target ethers-v5 \"artifacts/contracts/DictatorDAOFlat.sol/Dictator?(DAO|Deployer|Token).json\"",
"build": "npx tsc -b",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage",
"test": "npx hardhat test",
"lint": "npx gts lint",
"format": "npx prettier --config prettier.config.js --write .",
"clean": "npx gts clean",
"fix": "npx gts fix"
},
"dependencies": {
"@boringcrypto/boring-solidity": "./boring-solidity",
"@boringcrypto/hardhat-framework": "boringcrypto/hardhat-framework"
},
"devDependencies": {
"@ethersproject/abi": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@symblox/hardhat-abi-gen": "^0.2.0",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/node": "^14",
"dotenv": "^10.0.0",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"hardhat-deploy": "^0.9.24",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"lodash": "^4.17.15",
"prettier": "^2.5.1",
"prettier-config-solidity": "^1.6.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "4.7.4"
}
}