-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.53 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@prb/hardhat-template",
"description": "Hardhat-based template for developing Solidity smart contracts",
"version": "1.0.0",
"author": {
"name": "lodge",
"url": "https://github.com/10d9e"
},
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@types/bluebird": "^3.5.38",
"@types/chai": "^4.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.5.6",
"axios": "^1.6.8",
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"dotenv": "^16.3.1",
"ethereumjs-wallet": "^1.0.2",
"ethers": "6",
"hardhat": "^2.22.4",
"hardhat-deploy": "^0.12.4",
"prettier": "^3.2.5",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.1"
},
"files": [
"contracts"
],
"keywords": [
"blockchain",
"ethers",
"ethereum",
"hardhat",
"smart-contracts",
"solidity",
"template",
"typescript",
"typechain"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"preinstall": "sudo ./scripts/setup.sh",
"lilypad:setup": "sudo ./scripts/setup.sh",
"lilypad:start": "./scripts/start.sh",
"lilypad:clean": "rm -rf .lilypad",
"lilypad:cowsay": "./stack run cowsay:v0.0.1 -i Message='moo'",
"lilypad:onchain:cowsay": "./stack run-cowsay-onchain",
"lilypad:up": "./up.sh",
"lilypad:down": "./down.sh",
"node": "hardhat node --network hardhat",
"deploy": "npx hardhat deploy --network geth",
"deploy2": "yes | hardhat ignition deploy ./ignition/modules/LilypadControllerModule.ts --network geth",
"clean": "hardhat clean && rm -rf ignition/deployments deployments artifacts cache",
"compile": "hardhat compile",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"test/**/*.ts\" && npm run typechain",
"lint": "npm run lint:sol && npm run lint:ts && npm run prettier:check",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .",
"postcompile": "npm run typechain",
"prettier:check": "prettier --check \"**/*.{js,json,md,sol,ts,yml}\"",
"prettier:write": "prettier --write \"**/*.{js,json,md,sol,ts,yml}\"",
"task:deployLock": "hardhat task:deployLock",
"task:withdraw": "hardhat task:withdraw",
"test": "hardhat test",
"typechain": "hardhat typechain"
}
}