-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.15 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.15 KB
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
{
"name": "skillproof",
"version": "1.0.0",
"type": "module",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"test:gas": "REPORT_GAS=true hardhat test",
"format": "prettier --write 'contracts/**/*.sol' 'test/**/*.ts' 'ignition/**/*.ts'",
"lint": "solhint 'contracts/**/*.sol'",
"clean": "hardhat clean"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^4.0.4",
"@nomicfoundation/hardhat-ignition": "^3.0.7",
"@nomicfoundation/hardhat-ignition-ethers": "^3.0.7",
"@nomicfoundation/hardhat-network-helpers": "^3.0.3",
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.2",
"@openzeppelin/contracts": "^5.4.0",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.7",
"chai": "^5.3.3",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"forge-std": "github:foundry-rs/forge-std#v1.9.7",
"hardhat": "^3.1.5",
"mocha": "^11.3.0",
"prettier": "^3.8.1",
"prettier-plugin-solidity": "^2.2.1",
"solhint": "^6.0.3",
"typescript": "~5.8.0"
}
}