-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.27 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
{
"name": "harmoniadao-tests",
"version": "0.0.1",
"description": "HarmoniaDAO tests",
"private": true,
"repository": "https://github.com/diegoxter/Harmonia_DAO_Protocol",
"author": "Jiego",
"license": "MIT",
"scripts": {
"format:check": "prettier --check ./**/*.{js,ts,sol}",
"format:write": "prettier --write ./**/*.{js,ts,sol}",
"prepare": "husky install",
"test:auction": "hardhat test ./tests/CLDAuction.ts",
"test:treasury": "hardhat test ./tests/Treasury.ts",
"slither": "py -m slither ."
},
"devDependencies": {
"@commitlint/config-conventional": "^12.1.4",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.2",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"ethers": "^5.0.23",
"hardhat": "^2.11.2",
"hardhat-abi-exporter": "2.0.6",
"hardhat-contract-sizer": "^2.0.2",
"husky": "^7.0.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solidity-coverage": "^0.7.13",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}