-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.61 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-contracts-dao",
"version": "0.1.0",
"description": "DMD DAO contracts",
"scripts": {
"compile": "npx hardhat compile --force",
"test": "npx hardhat test --show-stack-traces",
"clean": "rm -rf artifacts/ cache/ coverage/ typechain/ typechain-types/ coverage.json",
"coverage": "npx hardhat coverage --show-stack-traces --config ./hardhat-coverage.config.ts --solcoverjs ./.solcover.js",
"update-core": "rm -rf node_modules/diamond-contracts-core && npm install diamond-contracts-core --save --legacy-peer-deps",
"deployForDaoUpgrade": "npx hardhat run scripts/deployForDaoUpgrade.ts",
"switchPhase": "npx hardhat run scripts/switchPhase.ts",
"clean-install": "rm -f package-lock.json && rm -rf node_modules/diamond-contracts-core && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DMDcoin/diamond-contracts-dao.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DMDcoin/diamond-contracts-dao/issues"
},
"homepage": "https://github.com/DMDcoin/diamond-contracts-dao#readme",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.1.0",
"hardhat-contract-sizer": "^2.10.0",
"ts-node": "^10.9.2",
"typechain": "^8.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"diamond-contracts-core": "github:DMDcoin/diamond-contracts-core#master"
},
"prettier": "./.prettierrc.json"
}