-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.24 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
{
"name": "blockchain-contracts",
"version": "0.1.0",
"private": true,
"main": "dist/exports.js",
"type": "commonjs",
"exports": {
".": "./dist/exports.js",
"./contracts": "./dist/typechain",
"./utils": "./dist/scripts/utils",
".pnp.cjs": "./.pnp.cjs"
},
"types": "dist/exports.d.ts",
"typesVersions": {
"*": {
"dist/exports.d.ts": [
"dist/exports.d.ts"
],
"contracts": [
"dist/typechain/index.d.ts"
],
"utils": [
"dist/scripts/utils.d.ts"
],
"dist/*": [],
"scripts/*": [],
"test/*": []
}
},
"scripts": {
"build": "yarn hardhat compile; tsc; node .yarn/copy-typechain-d-ts.js",
"watch:hhc": "yarn ts-node ./scripts/watch-compile.ts",
"watch:hht": "yarn ts-node ./scripts/watch-test.ts",
"watch:tsc": "tsc -w",
"prepack": "$npm_execpath run build"
},
"keywords": [],
"author": {
"name": "Kelvin Schoofs",
"email": "schoofs.kelvin@gmail.com",
"url": "https://github.com/schoofskelvin"
},
"dependencies": {
"@ethersproject/abi": "^5.4.0",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.6.4",
"ethers": "^5.6.1"
},
"devDependencies": {
"@ethersproject/bignumber": "^5.6.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.2.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@swc/core": "^1.2.84",
"@typechain/ethers-v5": "^6.0.5",
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.2",
"@types/node": "^14",
"chai": "^4.3.4",
"chokidar": "^3.5.3",
"dotenv": "^10.0.0",
"eth-gas-reporter": "^0.2.25",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.9.3",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-typechain": "^0.3.5",
"mocha": "^9.2.2",
"mocha-steps": "^1.3.0",
"nodemon": "^2.0.15",
"ts-generator": "^0.1.1",
"ts-node": "^10.7.0",
"typechain": "^4.0.3",
"typescript": "~4.6.3"
},
"resolutions": {
"@ethersproject/providers": "5.6.1",
"eth-gas-reporter": "https://github.com/SchoofsKelvin/eth-gas-reporter#feature/async-gas-per-test"
},
"packageManager": "yarn@3.2.0+git"
}