-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 745 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 745 Bytes
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
{
"name": "staked_escrow",
"version": "0.0.1",
"description": "An EVM smart contract for escrows where each party has a stake",
"main": "index.js",
"directories": {
"test": "test",
"contracts": "contracts",
"scripts": "scripts"
},
"scripts": {
"test": "npx hardhat test",
"deploy": "npx hardhat run --network sepolia scripts/deploy.ts"
},
"keywords": [],
"author": "Kipling Crossing",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.4.1",
"hardhat": "^2.17.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"dotenv": "^16.3.1",
"ethereum-cryptography": "^2.1.2",
"ethers": "^6.6.4"
}
}