generated from pooltogether/pooltogether-contracts-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@friends-of-pooly/nft-auto-rotate-sol",
"version": "1.0.0-beta.2",
"description": "Auto-rotating NFTs using dynamic on-chain metadata generation.",
"main": "index.js",
"license": "GPL-3.0",
"scripts": {
"prepare": "husky install",
"clean": "rm -rf cache/ artifacts/",
"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",
"docs": "solidity-docgen --solc-module solc -i contracts -o docs -t templates",
"deploy": "hardhat deploy --write true --network",
"verify": "hardhat etherscan-verify --license GPL-3.0 --solc-input --network",
"etherscan-verify-polygon": "hardhat --config hardhat.config.polygon.js run ./scripts/verify.js --network",
"format": "prettier --config .prettierrc --write \"**/*.{ts,js}\" \"contracts/**/*.sol\"",
"format:file": "prettier --config .prettierrc --write",
"hint": "solhint \"contracts/**/*.sol\"",
"start-fork": "FORK_ENABLED=true hardhat node --no-reset --no-deploy",
"impersonate-accounts": "hardhat --network localhost fork:impersonate-accounts ",
"distribute-ether": "hardhat --network localhost fork:distribute-ether-from-binance",
"create-prize-pool": "hardhat --network localhost fork:create-aave-prize-pool",
"run-fork": "yarn impersonate-accounts && yarn distribute-ether && yarn create-prize-pool",
"remove-logs": "yarn run hardhat remove-logs",
"test": "yarn clean && HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat test",
"typechain": "typechain --target=ethers-v5 \"./abis/*.json\" --out-dir \"./types\"",
"prepack": "yarn compile"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.4",
"@nomiclabs/hardhat-etherscan": "3.0.0",
"@nomiclabs/hardhat-waffle": "2.0.2",
"@openzeppelin/hardhat-upgrades": "1.14.0",
"@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": "17.0.16",
"chai": "4.3.6",
"chalk": "5.0.0",
"debug": "4.3.3",
"ethereum-waffle": "3.4.0",
"ethers": "5.5.4",
"hardhat": "2.8.3",
"hardhat-abi-exporter": "2.8.0",
"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",
"prettier": "2.5.1",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solc": "0.8.14",
"solhint": "3.3.6",
"solidity-coverage": "0.7.18",
"solidity-docgen": "0.5.16",
"ts-generator": "0.1.1",
"ts-node": "10.5.0",
"typechain": "7.0.0",
"typescript": "4.5.5"
},
"files": [
"LICENSE",
"abis/**",
"artifacts/**",
"contracts/**",
"deployments/**",
"deploy/**"
],
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"base64-sol": "^1.1.0"
}
}