-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "gamefi-farming",
"version": "1.0.0",
"description": "On-chain farming game: Solidity contracts, Phaser client and multiplayer server",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true hardhat test",
"coverage": "VIA_IR=true hardhat coverage",
"node": "hardhat node",
"clean": "hardhat clean",
"deploy:local": "hardhat run scripts/deploy.js --network localhost",
"deploy:sepolia": "hardhat run scripts/deploy.js --network sepolia",
"verify:sepolia": "hardhat run scripts/verify.js --network sepolia",
"check:local": "hardhat run scripts/check-deployment.js --network localhost",
"check:sepolia": "hardhat run scripts/check-deployment.js --network sepolia",
"export:abi": "node scripts/export-abi.js",
"lint:sol": "solhint 'contracts/**/*.sol'"
},
"keywords": [
"gamefi",
"farming",
"nft",
"erc20",
"erc721",
"solidity",
"hardhat"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"dotenv": "^17.2.3",
"hardhat": "^2.28.3"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0"
}
}