-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.94 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": "mosco",
"version": "1.0.0",
"description": "The Mocha Smart Contract (MoSCO) enables secure, blockchain-based purchases of premium features in Mocha Bot, providing users with decentralized, verified access to upgrades across servers.",
"main": "index.js",
"scripts": {
"clean": "npx hardhat clean",
"test": "npx hardhat test",
"chain": "npx hardhat node",
"coverage": "npx hardhat coverage",
"lint": "npx @biomejs/biome check . & solhint 'contracts/**/*.sol'",
"lint:fix": "npx @biomejs/biome format . --write & solhint contracts/**/*.sol --fix & prettier --write contracts/**/*.sol",
"compile": "hardhat compile --show-stack-traces",
"deploy:local": "npx hardhat run --network localhost scripts/deploy.ts",
"deploy:sepolia": "npx hardhat run --network sepolia scripts/deploy.ts",
"prepare": "husky install",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"verify:sepolia": "npx hardhat verify --network sepolia"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mocha-bot/mosco.git"
},
"keywords": [
"mocha",
"smart contract",
"blockchain"
],
"author": "Muhammad Wildan Aldiansyah",
"license": "ISC",
"bugs": {
"url": "https://github.com/mocha-bot/mosco/issues"
},
"homepage": "https://github.com/mocha-bot/mosco#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@nomicfoundation/hardhat-ignition": "^0.15.7",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.7",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@nomiclabs/hardhat-solhint": "^4.0.1",
"ethers": "^6.13.4",
"hardhat": "^2.22.15",
"husky": "^8.0.3"
},
"dependencies": {
"@openzeppelin/contracts": "^5.1.0",
"dotenv": "^16.4.5"
}
}