-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "diamond-governance",
"version": "1.0.0",
"description": "A bridge between the Aragon framework and ERC-2535 facets",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"test": "npm run generate-sdk && npx hardhat test --typecheck",
"deploy": "npm run generate-abis && npx hardhat run scripts/Deploy.ts --network mumbai",
"generate-sdk": "npm run generate-abis && npx hardhat run scripts/GenerateSDK.ts",
"generate-abis": "npm run compile && npx hardhat run scripts/GenerateAbis.ts",
"generate-facet": "npx hardhat run scripts/GenerateFacet.ts",
"publish-sdk": "npm run generate-sdk && tsc --project ./sdk/tsconfig.json --declaration && npm publish ./sdk --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SecureSECODAO/diamond-governance.git"
},
"author": "Utrecht University - SecureSECO DAO",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/SecureSECODAO/diamond-governance/issues"
},
"homepage": "https://github.com/SecureSECODAO/diamond-governance#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"hardhat": "^2.13.0"
},
"dependencies": {
"@aragon/osx": "^1.2.0",
"@ensdomains/ens-contracts": "^0.0.20",
"@ethersproject/abstract-signer": "^5.7.0",
"@openzeppelin/contracts": "^4.8.2",
"@openzeppelin/contracts-upgradeable": "^4.8.2",
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"form-data": "^4.0.0"
}
}