-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
46 lines (46 loc) · 1.42 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
{
"name": "hardhat-project",
"scripts": {
"clean:docs": "rimraf docs",
"docs": "run-s clean:docs hardhat:docs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"hardhat:docs": "hardhat docgen",
"lint": "run-s lint:ts lint:solidity",
"lint:ts": "eslint .",
"lint:solidity": "solhint contracts/**/*.sol",
"test": "npx hardhat test",
"test:coverage": "npx hardhat coverage",
"test:gas": "REPORT_GAS=true npx hardhat test",
"type-check": "tsc --pretty --noEmit"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"cross-fetch": "^3.1.5",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"hardhat": "^2.11.1",
"hardhat-contract-sizer": "^2.6.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"rimraf": "^3.0.2",
"solhint": "^3.3.7",
"solidity-docgen": "^0.6.0-beta.32",
"typescript": "^4.8.2",
"uuid": "^9.0.0",
"verite": "^0.0.4"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}