-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.6 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
{
"name": "redduck-academy",
"author": "Yaroslav Syvukha",
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"build": "run-s clean compile",
"test": "hardhat test",
"coverage": "cross-env SOLIDITY_COVERAGE=true hardhat coverage --solcoverjs ./.solcover.json",
"deploy": "hardhat ignition deploy",
"lint:ts": "eslint \"**/*.{js,ts}\"",
"lint:ts:fix": "eslint \"**/*.{js,ts}\" --fix",
"lint:sol": "solhint \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint \"contracts/**/*.sol\" --quiet --fix",
"format:ts": "prettier \"**/*.{js,ts,json}\" --check",
"format:ts:fix": "prettier \"**/*.{js,ts,json}\" --write",
"format:sol": "prettier \"contracts/**/*.sol\" --check",
"format:sol:fix": "prettier \"contracts/**/*.sol\" --write",
"codestyle": "run-s lint:* format:*",
"codestyle:fix": "run-s lint:*:* format:*:*",
"slither": "slither . --config-file ./slither.config.json",
"slither:summary": "yarn slither --print human-summary --config-file ./slither.config.json"
},
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-ignition": "^0.15.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.6",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": ">=18.0.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^6.4.0",
"hardhat": "^2.22.3",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.4",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typechain": "^8.3.0",
"typescript": ">=4.5.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"keccak256": "^1.0.6"
}
}