-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
132 lines (132 loc) · 4.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "hardhat-boilerplate",
"version": "0.0.0",
"description": "Hardhat boilerplate",
"keywords": [
"ethereum",
"smart",
"contracts",
"test",
"solidity",
"hardhat",
"boilerplate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/defi-wonderland/solidity-hardhat-boilerplate.git"
},
"license": "AGPL-3.0-only",
"contributors": [
{
"name": "404skillz",
"url": "https://github.com/404skillz"
},
{
"name": "0xGorilla",
"url": "https://github.com/0xGorilla"
},
{
"name": "wei3erHase",
"url": "https://github.com/wei3erHase"
},
{
"name": "0xged",
"url": "https://github.com/0xged"
}
],
"files": [
"solidity/contracts",
"solidity/interfaces",
"artifacts/solidity/**/*.json",
"!artifacts/solidity/**/**/*.dbg.json",
"typechained",
"deployments",
"!deployments/localhost",
"!.env",
"!**/.DS_Store"
],
"scripts": {
"compile": "eth-sdk && hardhat compile",
"compile:test": "cross-env TEST=true hardhat compile",
"coverage": "hardhat coverage",
"deploy": "npx hardhat deploy",
"docs": "solidity-docgen --solc-module solc-0.8",
"fork:node": "cross-env FORK=true hardhat node",
"fork:script": "cross-env FORK=true hardhat run",
"postinstall": "husky install && yarn compile",
"lint:check": "cross-env solhint 'solidity/**/*.sol' && cross-env prettier --check './**'",
"lint:fix": "sort-package-json && cross-env prettier --write './**' && cross-env solhint --fix 'solidity/**/*.sol'",
"prepare": "husky install",
"prepublishOnly": "hardhat clean && hardhat compile && pinst --disable",
"postpublish": "pinst --enable",
"release": "standard-version",
"test": "yarn compile:test && cross-env TEST=true mocha",
"test:all": "yarn test './test/e2e/**/*.spec.ts' && yarn test 'test/unit/**/*.spec.ts'",
"test:e2e": "yarn test './test/e2e/**/*.spec.ts'",
"test:gas": "cross-env REPORT_GAS=1 npx hardhat test",
"test:unit": "yarn test 'test/unit/**/*.spec.ts'"
},
"lint-staged": {
"*.{js,css,md,ts,sol,yml}": "prettier --write",
"*.sol": "cross-env solhint --fix 'solidity/**/*.sol'",
"package.json": "sort-package-json"
},
"resolutions": {
"cli-table3@^0.5.0/colors": "1.4.0",
"cli-table@^0.3.1/colors": "1.0.3",
"eth-gas-reporter/colors": "1.4.0"
},
"dependencies": {
"@openzeppelin/contracts": "4.8.1"
},
"devDependencies": {
"@codechecks/client": "0.1.12",
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@defi-wonderland/smock": "2.3.4",
"@dethcrypto/eth-sdk": "0.3.3",
"@dethcrypto/eth-sdk-client": "0.1.6",
"@ethersproject/abi": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "1.0.5",
"@nomicfoundation/hardhat-network-helpers": "1.0.7",
"@nomicfoundation/hardhat-toolbox": "2.0.1",
"@nomiclabs/hardhat-ethers": "2.2.2",
"@nomiclabs/hardhat-etherscan": "3.1.5",
"@typechain/ethers-v5": "10.2.0",
"@typechain/hardhat": "6.1.5",
"@types/chai": "4.3.4",
"@types/chai-as-promised": "7.1.5",
"@types/lodash": "4.14.191",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.3",
"dotenv": "16.0.3",
"ethers": "5.7.2",
"hardhat": "2.12.6",
"hardhat-deploy": "0.11.22",
"hardhat-gas-reporter": "1.0.9",
"hardhat-preprocessor": "0.1.5",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"lodash": "4.17.21",
"mocha": "10.2.0",
"pinst": "3.0.0",
"prettier": "2.8.3",
"prettier-plugin-solidity": "1.1.1",
"solc-0.8": "npm:[email protected]",
"solhint": "3.3.7",
"solhint-plugin-defi-wonderland": "1.1.0",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.8.2",
"solidity-docgen": "0.5.17",
"sort-package-json": "2.1.0",
"standard-version": "9.5.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.2",
"typechain": "8.1.1",
"typescript": "4.9.4"
}
}