generated from NomicFoundation/hardhat-ts-plugin-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.46 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
{
"name": "hardhat-switch-network",
"version": "1.1.1",
"description": "Hardhat plugin to enable switching networks during runtime",
"author": "Nenad Misić",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/0xNeshi/hardhat-switch-network.git"
},
"bugs": {
"url": "https://github.com/0xNeshi/hardhat-switch-network/issues"
},
"homepage": "https://0xneshi.github.io/hardhat-switch-network/",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"switch-network",
"change-network"
],
"scripts": {
"ci-all": "./scripts/install-all.sh --clean",
"install-all": "./scripts/install-all.sh",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"test-all": "./scripts/test-all.sh",
"compile": "hardhat compile",
"test-live-txs": "./scripts/test-live-txs.sh",
"deploy": "hardhat compile && ./scripts/deploy-contracts.sh",
"redeploy": "hardhat compile && ./scripts/deploy-contracts.sh --reset",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build",
"lint": "eslint $(git ls-files '*.ts')",
"format": "prettier-eslint --list-different --write $(git ls-files '*.ts' '*.js')"
},
"files": [
"dist",
"src",
"*.d.ts",
"*.d.ts.map",
"*.js",
"*.js.map",
"LICENSE",
"README.md"
],
"devDependencies": {
"@eslint/js": "^9.16.0",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.8",
"@nomicfoundation/hardhat-viem": "^2.0.6",
"@nomicfoundation/hardhat-web3-v4": "^1.0.0",
"@types/chai": "^5.0.1",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"chai": "^5.1.2",
"eslint": "^9.16.0",
"ethers": "^6",
"globals": "^15.12.0",
"hardhat": "^2.22.12",
"mocha": "^10.8.2",
"prettier": "3.4.1",
"prettier-eslint-cli": "^8.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"viem": "^2.21.38",
"web3": "^4"
},
"peerDependencies": {
"hardhat": "^2.22.12"
}
}