-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.18 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
{
"name": "@daohaus/baal-shamans",
"version": "1.0.0",
"description": "Different Shamans that can be used with the Molochv3(Baal) contracts",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"lockfileVersion": 2,
"files": [
"abi",
"dist"
],
"scripts": {
"test": "hardhat test --network hardhat",
"build": "yarn build:sol && yarn build:abi && yarn build:ts",
"build:test": "yarn build:sol && yarn build:ts",
"build:ts": "yarn tsc --build tsconfig.build.json",
"build:abi": "yarn hardhat export-abi",
"build:sol": "yarn hardhat compile --force",
"build:declarations": "shx cp src/types/*.d.ts dist/src/types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HausDAO/baal-shamans.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HausDAO/baal-shamans/issues"
},
"homepage": "https://github.com/HausDAO/baal-shamans#readme",
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/hardhat-upgrades": "^1.22.0",
"@spruceid/didkit-wasm-node": "^0.2.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethers": "^5.7.1",
"hardhat": "^2.11.2",
"hardhat-abi-exporter": "^2.10.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.11.30",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.1.0",
"shx": "^0.3.4",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@daohaus/baal-contracts": "^1.2.17",
"@gnosis.pm/safe-contracts": "^1.3.0",
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@prb/math": "^3.1.0"
}
}