-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 2.3 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
{
"name": "treasure-marketplace",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "eslint hardhat.config.ts hardhat-extra/ deploy/ test/",
"style": "npx prettier -w hardhat.config.ts hardhat-extra/ deploy/ test/ && npm run lint",
"deploy:zksync-sepolia": "hardhat deploy-zksync --network zkSyncSepolia --script zkSyncSepolia/TreasureMarketplaceTestnet.deploy.ts",
"deploy:treasure-topaz": "hardhat deploy-zksync --network treasureTopaz --script treasureTopaz/TreasureMarketplaceTestnet.deploy.ts",
"test": "hardhat coverage --testfiles 'contracts/TreasureMarketplace.sol'"
},
"repository": {
"type": "git",
"url": "[email protected]:ghoul-sol/treasure-marketplace.git"
},
"author": "Ghoul.sol",
"license": "",
"dependencies": {
"@aws-sdk/client-kms": "^3.504.0",
"@matterlabs/hardhat-zksync": "^1.1.0",
"@matterlabs/hardhat-zksync-deploy": "^1.5.0",
"@matterlabs/hardhat-zksync-upgradable": "^1.6.0",
"@matterlabs/hardhat-zksync-verify": "^1.6.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@openzeppelin/contracts": "4.3.2",
"@openzeppelin/contracts-upgradeable": "4.5.2",
"@prb/math": "^2.5.0",
"@swc/core": "^1.3.107",
"asn1-ts": "^8.0.2",
"dotenv": "^10.0.0",
"ethers": "^6.11.1",
"hardhat": "^2.19.4",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.45",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.10",
"ts-node": "^10.9.2",
"zksync-ethers": "^6.12.1"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"chai": "^4.3.4",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.4",
"solhint": "^4.1.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}