forked from wemixarchive/governance-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "governance-contract",
"version": "0.0.1",
"description": "governance contract for metadium",
"main": "",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run compile && scripts/test.sh",
"compile": "scripts/compile.sh",
"install_analyzer": "scripts/install_analyzer.sh",
"analyze": "scripts/analyze.sh",
"coverage": "scripts/coverage.sh",
"flatten": "scripts/flatten.sh",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"testrpc": "scripts/startTestRpc.sh"
},
"author": "Metadium",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.8",
"hardhat": "^2.9.6",
"bignumber.js": "^9.0.2",
"dotenv": "^16.0.1",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.8"
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.7.0"
}
}