generated from Yurii721/hardhat-ts-sceleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 4.41 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
{
"name": "project-name",
"version": "1.0.0",
"description": "A project description.",
"author": "Author Name <[email protected]>",
"license": "MIT",
"keywords": [
"blockchain",
"ethereum",
"solidity",
"ts",
"hardhat",
"ethers"
],
"files": [
"/.husky/**/*",
"!/.husky/_/**/*",
"/abi/**/*",
"/contracts/**/*",
"/coverage/**/*",
"/docs/**/*",
"/scripts/**/*",
"/test/**/*",
".editorconfig",
".env.example",
".eslintignore",
".eslintrc.js",
".gitattributes",
".gitignore",
".lintstagedrc.json",
".mocharc.json",
".prettierignore",
".prettierrc.json",
".solcover.js",
".solhint.json",
".solhintignore",
"commitlint.config.ts",
"coverage.json",
"hardhat.config.ts",
"LICENSE",
"README.md",
"slither.config.json",
"tsconfig.json"
],
"scripts": {
"compile": "npx hardhat compile",
"dev:coverage": "npx hardhat coverage",
"test": "npx hardhat test",
"test-f": "FORKING=true npm test",
"test-t": "npx hardhat test --trace",
"dev:size-contracts": "npm run compile-all && npx hardhat size-contracts",
"gas-report": "REPORT_GAS=true npx hardhat test",
"dev:abi": "npx hardhat clear-abi && npx hardhat export-abi",
"dev:docs": "npx shx rm -rf docs && npx hardhat docgen",
"deploy:all": "ENABLED_OPTIMIZER=true npx hardhat run scripts/deployment/deploy.ts",
"deploy:positive-even-setter": "ENABLED_OPTIMIZER=true npx hardhat run scripts/deployment/separately/PositiveEvenSetter.ts",
"clean": "npx shx rm -rf artifacts cache coverage coverage.json && npx shx echo Cleaned",
"clean-oz": "npx shx rm -rf .openzeppelin && npx shx echo Cleaned",
"dev:slither": "npm run clean && slither .",
"dev:lint": "npm run dev:prettier && npm run dev:solhint && npm run dev:eslint",
"dev:lint-fix": "npm run dev:prettier-fix && npm run dev:solhint-fix && npm run dev:eslint-fix",
"dev:prettier": "npx prettier --check \"**/*.{sol,ts,js,md,json,yaml,yml}\"",
"dev:prettier-fix": "npx prettier --write \"**/*.{sol,ts,js,md,json,yaml,yml}\"",
"dev:solhint": "npx solhint \"contracts/**/*.sol\"",
"dev:solhint-fix": "npx solhint \"contracts/**/*.sol\" --fix",
"dev:eslint": "npx eslint \"**/*.{ts,js}\"",
"dev:eslint-fix": "npx eslint \"**/*.{ts,js}\" --fix",
"dev:hh-check": "npx hardhat check",
"compile-all": "npx hardhat compile --force",
"test-tc": "npx hardhat test --typecheck",
"test-ft": "npx hardhat test --fulltrace",
"compile-4g": "npx hardhat --max-memory 4096 compile",
"test-4g": "NODE_OPTIONS=\"--max-old-space-size=4096\" npm test",
"dev:node": "npx hardhat node",
"ndeploy:all": "ENABLED_OPTIMIZER=true npm run compile-all && node scripts/deployment/deploy.js",
"dev:flatten": "npm run compile-all && npx hardhat flatten",
"postinstall": "npm run compile-all && npm run dev:abi && npm run dev:docs",
"prepare": "npx husky install"
},
"dependencies": {
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"hardhat": "^2.12.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-tracer": "^1.1.0-rc.9",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"shx": "^0.3.4",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-docgen": "^0.6.0-beta.29"
},
"engines": {
"node": ">= 16.0.0",
"npm": ">= 7.0.0"
}
}