-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "@astrolabs/hardhat",
"version": "1.2.29",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/AstrolabFinance/hardhat",
"author": "Astrolab DAO <contact@astrolab.fi>",
"license": "MIT",
"description": "Astrolab Hardhat's boilerplate",
"keywords": [
"astrolab",
"ethereum",
"smart-contract"
],
"scripts": {
"build": "rm -rf ./dist/* && tsc --build",
"clean": "rm -rf node_modules && rm -rf dist",
"pub": "yarn build && yarn publish --access public"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@ethersproject/experimental": "^5.7.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@types/lodash": "^4.17.6",
"@types/mocha": "^10.0.3",
"mocha": "^10.2.0",
"mocha-multi": "^1.1.7",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@astrolabs/hardhat": "^1.2.9",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@tenderly/hardhat-tenderly": "^1.7.7",
"dotenv": "^16.3.1",
"ethcall": "4.8.13",
"ethers": "^5.7.0",
"hardhat": "^2.10.2",
"lodash": "^4.17.21",
"sync-fetch": "^0.5.2"
}
}