-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
58
59
{
"name": "simple-solidity-template",
"version": "1.0.1",
"main": "index.js",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"solidity",
"defi"
],
"repository": {
"type": "git",
"url": "https://github.com/ruggedev/simple-solidity-template"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.1",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.4",
"@openzeppelin/contracts": "^4.9.2",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^5.0.0",
"ethers": "^6.6.5",
"hardhat": "^2.5.0",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.11.34",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^3.0.0",
"solidity-coverage": "^0.8.4",
"ts-node": "^10.1.0",
"typechain": "^8.3.1",
"typescript": "5.1.6"
},
"scripts": {
"compile": "hardhat compile",
"pretest": "yarn compile",
"test": "hardhat test",
"test:parallel": "hardhat test --parallel",
"test:bail": "hardhat test --bail --parallel",
"size": "hardhat size-contracts",
"coverage": "hardhat coverage"
}
}