forked from CodeforDAO/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.1 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
{
"name": "codefordao-contracts",
"version": "0.1.0",
"description": "smart contracts of codefordao",
"main": "index.js",
"scripts": {
"start": "npx hardhat node --network hardhat --no-deploy",
"dev": "npx hardhat node --export-all ../website/contracts/localhost.json",
"dev:mint_ready": "TEST_STAGE=MINT_READY npx hardhat node --export-all ../website/contracts/localhost.json",
"test": "npx hardhat test --network hardhat",
"test:membership": "npx hardhat test --network hardhat tests/membership.js",
"test:governor": "npx hardhat test --network hardhat tests/governor.js",
"test:treasury": "npx hardhat test --network hardhat tests/treasury.js",
"test:modules": "npx hardhat test --network hardhat tests/modules.js",
"test:coverage": "npx hardhat coverage",
"compile": "npx hardhat compile",
"deploy:test": "npx hardhat deploy --network hardhat",
"deploy:localhost": "npx hardhat deploy --network localhost --export-all ../website/contracts/localhost.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/CodeforDAO/contracts.git"
},
"keywords": [
"codefordao"
],
"author": "guoyu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeforDAO/contracts/issues"
},
"homepage": "https://github.com/CodeforDAO/contracts#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/test-helpers": "^0.5.15",
"@tenderly/hardhat-tenderly": "^1.0.13",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.4",
"hardhat": "^2.10.1",
"hardhat-contract-sizer": "^2.5.0",
"hardhat-deploy": "^0.11.2",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-preprocessor": "^0.1.4",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.30",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.7.20"
},
"dependencies": {
"@openzeppelin/contracts": "4.5.0"
}
}