-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.4 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.4 KB
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
{
"name": "hardhat-test-template",
"version": "0.1.0",
"private": true,
"scripts": {
"help": "pnpm hardhat help",
"clean": "pnpm hardhat clean",
"console": "pnpm hardhat console",
"compile": "pnpm hardhat compile",
"coverage": "pnpm hardhat coverage",
"coverageN": "pnpm hardhat coverage --network localhost",
"flatten": "pnpm hardhat flatten",
"node": "pnpm hardhat node",
"nodeFork": "pnpm hardhat node --fork https://bsc-dataseed1.binance.org/",
"resetFork": "pnpm hardhat run scripts/resetFork.ts",
"deploy": "pnpm hardhat run scripts/deploy.ts",
"deployN": "pnpm hardhat run scripts/deploy.ts --network localhost",
"test": "pnpm hardhat test",
"testN": "pnpm hardhat test --network localhost",
"testP": "pnpm hardhat test --parallel",
"testNP": "pnpm hardhat test --parallel --network localhost",
"typechain": "pnpm hardhat typechain",
"verify": "pnpm hardhat verify --network bsc --constructor-args arguments.js DEPLOYED_CONTRACT_ADDRESS",
"lint": "npx eslint .",
"lintSOL": "pnpm hardhat check",
"prettierSOL": "npx prettier --check --plugin=prettier-plugin-solidity contracts/**/*.sol",
"prettierSOL:fix": "npx prettier --write --plugin=prettier-plugin-solidity contracts/**/*.sol",
"prettier": "npx prettier --check --ignore-path .prettierignore .",
"prettier:fix": "npx prettier --write --ignore-path .prettierignore .",
"codechecks": "npx codechecks"
},
"devDependencies": {
"@codechecks/client": "0.1.12",
"@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",
"@nomiclabs/hardhat-solhint": "3.0.1",
"@openzeppelin/contracts": "4.9.2",
"@typechain/ethers-v6": "0.4.2",
"@typechain/hardhat": "8.0.2",
"@types/bn.js": "5.1.1",
"@types/chai": "4.3.5",
"@types/lodash": "4.14.195",
"@types/mocha": "10.0.1",
"@types/node": "20.4.2",
"@typescript-eslint/eslint-plugin": "6.1.0",
"bn.js": "5.2.1",
"chai": "4.3.7",
"dotenv": "16.3.1",
"ethers": "6.6.4",
"ganache": "7.9.0",
"lodash": "4.17.21",
"prettier-plugin-solidity": "1.1.3",
"ts-node": "10.9.1",
"typechain": "8.3.0",
"typescript": "5.1.6"
},
"dependencies": {
"hardhat": "2.17.0"
}
}