forked from Moloch-Mystics/Baal
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
90 lines (90 loc) · 2.73 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": "@daohaus/baal-contracts",
"version": "1.2.18",
"description": "Lo, also it is the time of His rain.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": "./dist/src/index.js",
"./hardhat": "./dist/src/hardhat/index.js"
},
"typesVersions": {
"*": {
"hardhat": [
"./dist/src/hardhat/index.d.ts"
]
}
},
"lockfileVersion": 2,
"files": [
"/contracts/**/*.sol",
"/abi/*.json",
"/dist/**/*.js",
"/dist/**/*.ts",
"/export/artifacts/**/*.json",
"/export/deploy/*.js",
"/export/src/**/*.js",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"test": "hardhat test --network hardhat",
"export-deploy": "tsc -p tsconfig.deploy.json && hardhat export-artifacts export/artifacts",
"build": "rm -Rf dist && yarn build:sol && yarn build:abi && yarn build:ts && yarn export-deploy",
"build:test": "yarn build:sol && yarn build:ts",
"build:ts": "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.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HausDAO/Baal/issues"
},
"homepage": "https://github.com/HausDAO/Baal#readme",
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@gnosis.pm/safe-contracts": "^1.3.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/hardhat-upgrades": "^3.0.2",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.1",
"hardhat": "2.22.3",
"hardhat-abi-exporter": "^2.10.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.12.1",
"hardhat-gas-reporter": "^1.0.9",
"shx": "^0.3.4",
"solidity-coverage": "^0.8.6",
"ts-node": "^10.0.0",
"typechain": "^8.1.1",
"typescript": "^4.3.2"
},
"dependencies": {
"@gnosis.pm/zodiac": "^3.3.7",
"@opengsn/contracts": "2.2.5",
"@openzeppelin/contracts": "4.8.3",
"@openzeppelin/contracts-upgradeable": "4.8.3",
"safe-deployments": "^1.26.0"
}
}