-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "hardhat-project",
"scripts": {
"omnibus": "ts-node --files ./scripts/omnibs.ts",
"omnibus:run": "hardhat omnibus:run",
"omnibus:test": "hardhat omnibus:test",
"ks:add": "hardhat keystore:add",
"ks:ls": "hardhat keystore:list",
"ks:del": "hardhat keystore:delete",
"ks:gen": "hardhat keystore:generate",
"ks:pwd": "hardhat keystore:password",
"style": "prettier --write .",
"test": "nyc --reporter text-summary mocha",
"typechain": "SKIP_TYPECHAIN=true hardhat typechain",
"postinstall": "pnpm typechain"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/clarinet": "^0.12.1",
"@types/lodash": "^4.14.199",
"@types/mocha": "^10.0.6",
"@types/node-fetch": "^2.6.9",
"@types/prompts": "^2.4.4",
"@types/sinon": "^17.0.3",
"chai-as-promised": "^7.1.1",
"ethers": "^6.7.1",
"nock": "^13.5.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.1"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"chai": "^4.3.8",
"chalk": "^4.1.2",
"clarinet": "^0.12.6",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"hardhat": "2.22.9",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"node-fetch": "^2.7.0",
"prompts": "^2.4.2",
"tree-kill": "^1.2.2",
"web3-eth-accounts": "^4.1.1",
"web3-types": "^1.3.1"
}
}