forked from kamescg/delegatable-sol
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
97 lines (97 loc) · 3.54 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "delegatable-sol",
"version": "0.0.0-beta.0.1",
"description": "Solidity framework for extending any contract with counterfactual revocable-delegation.",
"main": "index.js",
"license": "MIT",
"contributors": [
{
"name": "Dan Finlay"
}
],
"files": [
"LICENSE",
"abis/**",
"artifacts/**",
"contracts/**",
"deployments/**",
"deploy/**"
],
"scripts": {
"cleanup": "rm -rf cache/ artifacts/",
"clean": "rm -rf node_modules/",
"build": "hardhat --show-stack-traces --max-memory 8192 compile",
"compile": "hardhat --show-stack-traces --max-memory 8192 compile",
"coverage": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat coverage",
"coverage:file": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat coverage --testfiles",
"deploy": "hardhat deploy --write true --network localhost",
"deploy:mainnet": "hardhat deploy --write true --network mainnet",
"deploy:goerli": "hardhat deploy --write true --network goerli",
"deploy:polygon:mainnet": "hardhat deploy --write true --network polygon",
"deploy:polygon:testnet": "hardhat deploy --write true --network polygonTestnet",
"deploy:optimism:mainnet": "hardhat deploy --write true --network optimism",
"deploy:optimism:testnet": "hardhat deploy --write true --network optimismTestnet",
"verify": "hardhat etherscan-verify --license GPL-3.0 --solc-input --network",
"format": "prettier --write \"**/*.{ts,js}\" \"contracts/**/*.sol\"",
"hint": "solhint \"contracts/**/*.sol\"",
"chain": "hardhat node --network hardhat",
"chain:fork": "FORK_ENABLED=true hardhat node",
"remove-logs": "hardhat remove-logs",
"test": "npm run cleanup && HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat test",
"test:fast": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat test",
"typechain": "typechain --target=ethers-v5 \"./abis/*.json\" --out-dir \"./types\"",
"prepack": "npm run compile",
"prepare": "husky install"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.2"
},
"devDependencies": {
"@ethersproject/abi": "5.6.1",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/contracts": "^5.0.0",
"@ethersproject/hardware-wallets": "^5.0.14",
"@ethersproject/providers": "^5.0.0",
"@metamask/eth-sig-util": "^4.0.1",
"@nomiclabs/hardhat-ethers": "2.0.4",
"@nomiclabs/hardhat-etherscan": "3.0.0",
"@nomiclabs/hardhat-waffle": "2.0.2",
"@typechain/ethers-v5": "9.0.0",
"@typechain/hardhat": "4.0.0",
"@types/chai": "4.3.0",
"@types/debug": "4.1.7",
"@types/mocha": "9.1.0",
"@types/node": "^18.0.0",
"base64-sol": "1.1.0",
"chai": "4.3.6",
"chalk": "5.0.0",
"debug": "4.3.3",
"dotenv": "^16.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eth-delegatable-utils": "^1.1.0",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "3.4.0",
"ethers": "^5.6.8",
"hardhat": "2.8.3",
"hardhat-abi-exporter": "2.8.0",
"hardhat-dependency-compiler": "1.1.2",
"hardhat-deploy": "0.10.5",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-ethers": "1.0.1",
"hardhat-gas-reporter": "1.0.7",
"hardhat-log-remover": "2.0.2",
"husky": "^8.0.1",
"lodash": "4.17.5",
"node-watch": "0.7.3",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "1.0.0-beta.24",
"solc": "0.8.15",
"solhint": "3.3.7",
"solidity-coverage": "0.7.18",
"solidity-docgen": "0.5.16",
"ts-generator": "0.1.1",
"ts-node": "^10.8.1",
"typechain": "7.0.0",
"typescript": "^4.7.4"
}
}