-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 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
{
"name": "sme4dd-eth-lab1",
"version": "1.0.0",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"deploy-nft": "npx hardhat ignition deploy ignition/modules/FtsrgNft.ts --network localhost",
"deploy-nft-dev": "npx hardhat ignition deploy ignition/modules/FtsrgNft.ts --network localhost --reset",
"deploy-factory": "npx hardhat ignition deploy ignition/modules/AuctionFactory.ts --network localhost",
"deploy-factory-dev": "npx hardhat ignition deploy ignition/modules/AuctionFactory.ts --network localhost --reset",
"deploy": "npx hardhat ignition deploy ignition/modules/System.ts --network localhost",
"deploy-dev": "npx hardhat ignition deploy ignition/modules/System.ts --network localhost --reset",
"debug-forward-clock-one-week": "npx hardhat run scripts/forward-clock-one-week.ts --network localhost"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"hardhat": "^2.22.13",
"hardhat-chai-matchers-viem": "^2.0.8",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1"
},
"dependencies": {
"@openzeppelin/contracts": "^5.1.0",
"r": "^0.0.5"
}
}