-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "hardhat-deploy-ethers",
"version": "0.4.2",
"description": "Hardhat TypeScript plugin boilerplate",
"publishConfig": {
"access": "public"
},
"repository": "github:wighawag/hardhat-plugin-template",
"author": "Ronan Sandford",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin"
],
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@nomicfoundation/hardhat-ethers": "^3.0.2",
"@types/chai": "^4.3.5",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.6.1",
"hardhat": "^2.16.0",
"hardhat-deploy": "^0.12.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.2",
"hardhat": "^2.16.0",
"hardhat-deploy": "^0.12.0"
},
"scripts": {
"prepare": "node ./.setup.js",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"test": "mocha --exit",
"build": "tsc",
"watch": "tsc -w"
}
}