generated from Mens-Ludos/solidity-template-v2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 2.02 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
{
"name": "solidity-template-v2",
"version": "0.0.1",
"license": "MIT",
"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"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.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",
"hardhat": "^2.22.2",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-docgen": "^1.3.0",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.4",
"solidity-coverage": "^0.8.12",
"tsconfig-paths": "^4.2.0",
"zod": "^3.22.4"
},
"dependencies": {
"@chainlink/contracts": "^1.1.1",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2"
}
}