forked from pooltogether/pooltogether-rng-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.6 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
{
"name": "@pooltogether/pooltogether-rng-contracts",
"author": "PoolTogether, Inc.",
"version": "1.4.0",
"description": "PoolTogether RNG Service Smart Contracts",
"license": "GPL-3.0",
"main": "index.js",
"scripts": {
"docs": "solidity-docgen --solc-module solc-0.8 -i contracts -o docs -t templates",
"reinstall": "rm -rf node_modules/ && rm -f yarn.lock && yarn clean && yarn",
"verify": "yarn hint && yarn test",
"hint": "solhint \"contracts/**/*.sol\"",
"test": "yarn clean-test && hardhat test",
"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",
"gas": "REPORT_GAS=true hardhat test --network local",
"start": "DEBUG=* hardhat node",
"deploy": "hardhat deploy --write true --network",
"clean": "rm -rf build cache",
"clean-test": "rm -rf deployments/hardhatevm_31337 test-results.xml",
"format": "prettier --config .prettierrc --write \"**/*.*.{ts,js}\" \"contracts/**/*.sol\"",
"format:file": "prettier --config .prettierrc --write",
"prepack": "rm -rf build cache && hardhat compile",
"etherscan-verify": "hardhat etherscan-verify --solc-input --api-key $ETHERSCAN_API_KEY --network",
"postpublish": "PACKAGE_VERSION=$(./scripts/package-version.sh) && git tag -ae v$PACKAGE_VERSION && git push --tags"
},
"dependencies": {
"@pooltogether/owner-manager-contracts": "1.1.0"
},
"devDependencies": {
"@chainlink/contracts": "0.3.1",
"@chainlink/test-helpers": "0.0.6",
"@nomiclabs/hardhat-ethers": "2.0.4",
"@nomiclabs/hardhat-etherscan": "3.0.0",
"@nomiclabs/hardhat-waffle": "2.0.2",
"@openzeppelin/contracts": "4.4.2",
"@resolver-engine/core": "0.3.3",
"@types/node": "17.0.12",
"chai": "4.3.6",
"debug": "4.3.3",
"ethereum-waffle": "3.4.0",
"ethers": "5.5.3",
"hardhat": "2.8.3",
"hardhat-abi-exporter": "2.8.0",
"hardhat-dependency-compiler": "1.1.2",
"hardhat-deploy": "0.9.28",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-gas-reporter": "1.0.7",
"mocha-junit-reporter": "2.0.2",
"prettier": "2.5.1",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solc": "0.8.6",
"solc-0.8": "npm:solc@0.8.6solc",
"solhint": "3.3.6",
"solidity-coverage": "0.7.18",
"solidity-docgen": "0.5.16",
"ts-node": "10.4.0",
"typescript": "4.5.5"
},
"files": [
"LICENSE",
"abis/**",
"build/**",
"contracts/**",
"deploy/**",
"deployments/**"
]
}